是否可以从管道中的 sh DSL 命令捕获标准输出

Is it possible to capture the stdout from the sh DSL command in the pipeline

例如:

var output=sh "echo foo";
echo "output=$output";

我会得到:

output=0

所以,显然我得到了退出代码而不是标准输出。是否可以将标准输出捕获到管道变量中,这样我可以获得: output=foo 作为我的结果?

注意:已解决链接的 Jenkins 问题。

JENKINS-26133 中所述,无法将 shell 输出作为变量。作为解决方法,建议使用临时文件中的写入读取。所以,你的例子看起来像:

sh "echo foo > result";
def output=readFile('result').trim()
echo "output=$output";

Now, the sh step 通过提供参数 returnStdout.

支持返回 stdout
// These should all be performed at the point where you've
// checked out your sources on the slave. A 'git' executable
// must be available.
// Most typical, if you're not cloning into a sub directory
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim()
// short SHA, possibly better for chat notifications, etc.
shortCommit = gitCommit.take(6)

参见 this example

试试这个:

def get_git_sha(git_dir='') {
    dir(git_dir) {
        return sh(returnStdout: true, script: 'git rev-parse HEAD').trim()
    }
}

node(BUILD_NODE) {
    ...
    repo_SHA = get_git_sha('src/FooBar.git')
    echo repo_SHA
    ...
}

测试于:

  • 詹金斯版本。 2.19.1
  • 管道 2.4

一个简短的版本是:

echo sh(script: 'ls -al', returnStdout: true).result

您也可以尝试使用此函数来捕获 StdErr StdOut 和 return 代码。

def runShell(String command){
    def responseCode = sh returnStatus: true, script: "${command} &> tmp.txt" 
    def output =  readFile(file: "tmp.txt")

    if (responseCode != 0){
      println "[ERROR] ${output}"
      throw new Exception("${output}")
    }else{
      return "${output}"
    }
}

通知:

&>name means 1>name 2>name -- redirect stdout and stderr to the file name
def listing = sh script: 'ls -la /', returnStdout:true

参考:http://shop.oreilly.com/product/0636920064602.do第 433 页

我遇到了同样的问题并尝试了几乎所有的东西,然后发现我在错误的块中尝试了它。我在步骤块中尝试它,但它需要在环境块中。

        stage('Release') {
                    environment {
                            my_var = sh(script: "/bin/bash ${assign_version} || ls ", , returnStdout: true).trim()
                                }
                    steps {                                 
                            println my_var
                            }
                }