ci: 镜像结束后触发standalone
This commit is contained in:
parent
c89d59f530
commit
e46b2d1eaf
|
@ -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') {
|
post('Notification') {
|
||||||
always {
|
always {
|
||||||
|
|
Loading…
Reference in New Issue