publishHTML中的allowMissing无法正常工作

时间:2018-08-29 18:39:58

标签: jenkins jenkins-plugins

我不希望我的詹金斯工作在找不到html报告时失败。

我有这样的代码来发布HTML报告

publishHTML([
       reportDir:'projects..../build_report',
       reportFiles:'index.html',
       reportName:'Foo Build Report',
       keepAll:true,
       alwaysLinkToLastBuild:true,
       allowMissing:false,
])

我尝试过allowMissing:true,但这也行不通!当找不到html文件时,我的工作仍然失败。

1 个答案:

答案 0 :(得分:0)

allowMissing:true是正确的参数。确保将其设置在正确的作业中