ci: 镜像结束后触发standalone

This commit is contained in:
CaptainB 2023-11-10 14:44:32 +08:00
parent c89d59f530
commit e46b2d1eaf
1 changed files with 13 additions and 0 deletions

13
Jenkinsfile vendored
View File

@ -120,6 +120,19 @@ pipeline {
}
}
}
stage('Build Standalone') {
when {
expression {
def reg = "^\\d+\\.\\w+\$"
return env.REVISION.matches(reg)
}
}
steps {
script {
build job: "../metersphere-standalone/${BRANCH_NAME}", quietPeriod: 10
}
}
}
}
post('Notification') {
always {