詹金斯失败 - 覆盖传递Yslow PhantomJS

时间:2014-07-31 17:03:10

标签: jenkins phantomjs yslow

我有一个调用Yslow测试的构建。由于某些yslow测试失败(我知道),构建失败。

有没有办法设置它,所以不管yslow测试,Jenkins都没有标记构建“失败”?

外壳:

/usr/local/bin/phantomjs yslow.js -i grade -t 50 -f junit http://www.website.com > yslow.xml

控制台输出:

Build step 'Execute shell' marked build as failure
Recording test results
Finished: FAILURE

1 个答案:

答案 0 :(得分:0)

您可以使用groovyPostbuild插件。以下内容应该有效:

if(manager.logContains(".*Build step 'Execute shell' marked build as failure.*")) {
    manager.build.@result = hudson.model.Result.SUCCESS
}