From a5d934949cc85a16cbeef4b92062e8aa0d9fbd58 Mon Sep 17 00:00:00 2001 From: CaptainB Date: Wed, 26 Oct 2022 15:09:19 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=B8=85=E7=90=86build=5Fparent=E5=92=8C?= =?UTF-8?q?build=5Fsdk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 2654006eaa..1d65c2eee9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -139,6 +139,21 @@ pipeline { post('Notification') { always { 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')]) { qyWechatNotification failNotify: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK" }