标签: jenkins jenkins-plugins jenkins-pipeline
我想从jenkins那里捕获工作中止事件,这可能吗?
答案 0 :(得分:2)
您应该使用if (currentBuild.currentResult == 'ABORTED') { // Do your stuff here } 变量来捕获中止状态。
if (currentBuild.currentResult == 'ABORTED') { // Do your stuff here }
finally
只需将其放在脚本的末尾,或放在try/catch/finally的{{1}}块中。
try/catch/finally