一尘不染

使用Shell脚本在Jenkins中手动构建失败吗

jenkins

我想标记一个詹金斯构建失败,例如:

if [ -f "$file" ]
then
    echo "$file found."
else
    echo "$file not found."
    #Do Jenkins Build Fail
fi

通过Shell脚本可以吗?

答: 如果我们以整数1退出,则Jenkins构建将被标记为失败。因此,我用替换了注释exit 1以解决此问题。


阅读 257

收藏
2020-07-25

共1个答案

一尘不染

您需要做的就是退出1。

if [ -f "$file" ]
then
    echo "$file found."
else
    echo "$file not found."
    exit 1
fi
2020-07-25