build: 构建后执行 mvn clean

This commit is contained in:
CaptainB 2022-03-15 18:09:39 +08:00 committed by 刘瑞斌
parent 51a9d7c1d0
commit 9bfadd32fd
1 changed files with 1 additions and 4 deletions

5
Jenkinsfile vendored
View File

@ -33,10 +33,7 @@ pipeline {
withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) { withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) {
qyWechatNotification failSend: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK" qyWechatNotification failSend: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK"
} }
cleanWs(cleanWhenNotBuilt: false, sh "./mvnw clean"
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true)
} }
} }
} }