使用shell脚本在Jenkins中手工构建失败

前端之家收集整理的这篇文章主要介绍了使用shell脚本在Jenkins中手工构建失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_0@ 我想标记一个Jenkins构建在一个场景下失败,例如:
if [ -f "$file" ]
then
    echo "$file found."
else
    echo "$file not found."
    #Do Jenkins Build Fail
fi

是否可以通过Shell脚本?

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

所有你需要做的是退出1。
if [ -f "$file" ]
then
    echo "$file found."
else
    echo "$file not found."
    exit 1
fi

猜你在找的Bash相关文章