如何在詹金斯管道中引发异常?

如何在詹金斯管道中引发异常?,第1张

如何在詹金斯管道中引发异常?

如果要在异常情况下中止程序,则可以使用管道步骤

error
以错误停止管道执行。范例:

try {  // Some pipeline pre} catch(Exception e) {   // Do something with the exception   error "Program failed, please read logs..."}

如果要以成功状态停止管道,则可能需要使用某种布尔值来指示必须停止管道,例如:

boolean continuePipeline = truetry {  // Some pipeline pre} catch(Exception e) {   // Do something with the exception   continuePipeline = false   currentBuild.result = 'SUCCESS'}if(continuePipeline) {   // The normal end of your pipeline if exception is not caught. }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5630012.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存