gpt4 book ai didi

jenkins - 如何操作 Jenkins 管道作业的构建结果(返回 'SUCCESS' )?

转载 作者:行者123 更新时间:2023-12-02 06:48:27 26 4
gpt4 key购买 nike

我在操作 Jenkins 管道的构建结果时遇到了一些麻烦。我已将其范围缩小到以下问题:任何人都知道为什么以下 Jenkins 管道不能使构建结果成功?相反,构建失败了。

print "Setting result to FAILURE"
currentBuild.result = 'FAILURE'

print "Setting result to SUCCESS"
currentBuild.result = 'SUCCESS'

最佳答案

我猜这是设计使然,“结果只会变得更糟”setResult() :

// result can only get worse
if (result==null || r.isWorseThan(result)) {
result = r;
LOGGER.log(FINE, this + " in " + getRootDir() + ": result is set to " + r, LOGGER.isLoggable(Level.FINER) ? new Exception() : null);
}

真可惜

关于jenkins - 如何操作 Jenkins 管道作业的构建结果(返回 'SUCCESS' )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38221836/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com