我想知道如何仅在文件包含特定文本时继续构建?
如果文本不正确,我希望构建失败,否则继续构建。
答案 0 :(得分:1)
更新脚本以返回非零退出状态。通过sh
步骤运行您的shell脚本:
sh '/path/to/your/script_that_checks_another_file_for_certain_text.sh'
完整的管道:
pipeline {
agent { label 'docker' }
stages {
stage('build') {
steps {
sh '/path/to/your/script_that_checks_another_file_for_certain_text.sh'
echo 'this will not happen if the above script returns a bad exit status'
}
}
}
}