从Jenkins管道捕获shell脚本输出

时间:2017-05-02 12:45:07

标签: git shell jenkins groovy jenkins-pipeline

我正在尝试提取git分支并在我的Jenkinsfile中提交信息,如下所示:

def commit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim()
def branch = sh(returnStdout: true, script: 'git rev-parse --abbrev-ref HEAD').trim()

我试图像以后一样打印它:

println("Branch: ${branch}, Commit: ${commit}")

我没有获得真正的价值,而是留下了这个:

Branch: org.jenkinsci.plugins.pipeline.modeldefinition.ClosureModelTranslator@545511bf, Commit: org.jenkinsci.plugins.pipeline.modeldefinition.ClosureModelTranslator@545511bf

我做错了什么,如何正确检索我需要的值?

编辑:不,建议的副本不是答案,因为我知道用于检索我需要的信息的shell命令。我的问题是以ClosureModelTranslator代替String向我发送信息的方式。

1 个答案:

答案 0 :(得分:7)

这个完整的管道对你有用吗?使用Pipeline插件2.4为我工作。

pipeline {
  agent { label 'docker' }
  stages {
    stage("test_capture_output_and_print") {
      steps {
        script {
          def commitSha = sh(returnStdout: true, script: 'git rev-parse HEAD').trim()
          println("commitSha: ${commitSha}")
        }
      }
    }
  }
}