ci: 清理build_parent和build_sdk
This commit is contained in:
parent
d8fbe2ca5e
commit
be8ee7a8c5
|
@ -139,6 +139,21 @@ pipeline {
|
||||||
post('Notification') {
|
post('Notification') {
|
||||||
always {
|
always {
|
||||||
sh "echo \$WEBHOOK\n"
|
sh "echo \$WEBHOOK\n"
|
||||||
|
script {
|
||||||
|
try {
|
||||||
|
if ($BUILD_PARENT || $BUILD_SDK) {
|
||||||
|
println "JOB_NAME=$JOB_NAME, BUILD_NUMBER=$BUILD_NUMBER, BUILD_URL=$BUILD_URL"
|
||||||
|
Hudson.instance.getItemByFullName("$JOB_NAME").builds.each {
|
||||||
|
if(it.number == Integer.parseInt("$BUILD_NUMBER")) {
|
||||||
|
println 'Deleting build number ' + it.number
|
||||||
|
it.delete()
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (NoSuchElementException) {
|
||||||
|
}
|
||||||
|
}
|
||||||
withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) {
|
withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) {
|
||||||
qyWechatNotification failNotify: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK"
|
qyWechatNotification failNotify: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue