mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
9 lines
229 B
Groovy
9 lines
229 B
Groovy
try {
|
|
sh "helm del --purge ${env.JOB_NAME}-${env.BUILD_NUMBER}"
|
|
} catch (exc) {
|
|
sh "helm del --purge ${env.JOB_NAME}-${env.BUILD_NUMBER}"
|
|
updateGitlabCommitStatus name: 'Cleanup Dev', state: 'failed'
|
|
throw exc
|
|
}
|
|
|