仅在文件包含特定文本时构建

时间:2017-05-03 22:39:32

标签: jenkins jenkins-plugins jenkins-cli

我想知道如何仅在文件包含特定文本时继续构建?

如果文本不正确,我希望构建失败,否则继续构建。

1 个答案:

答案 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'
      }
    }
  }
}