例如:
var output=sh "echo foo";
echo "output=$output";
我会得到:
output=0
因此,显然我得到的是退出代码,而不是标准输出。是否有可能将stdout捕获到管道变量中,这样我就可以得到:
output=foo
作为结果?
Answers:
现在,该sh
步骤通过提供参数来支持返回stdoutreturnStdout
。
// 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)
请参阅此示例。
--short
到rev-parse
即可直接获得简短的哈希值
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').toString().trim()
注意:链接的詹金斯问题已解决。
正如JENKINS-26133中提到的那样,不可能将shell输出作为变量。解决方法建议使用临时文件中的写命令。因此,您的示例将如下所示:
sh "echo foo > result";
def output=readFile('result').trim()
echo "output=$output";
stdout
和exit status
shell命令。其他时候,使用returnStdout
参数。
您也可以尝试使用此功能来捕获StdErr StdOut并返回代码。
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
我遇到了同样的问题,并尝试了几乎所有发现的问题,之后才知道我尝试了错误的方法。我在步骤块中尝试过它,但它必须在环境块中。
stage('Release') {
environment {
my_var = sh(script: "/bin/bash ${assign_version} || ls ", , returnStdout: true).trim()
}
steps {
println my_var
}
}
.trim()
此答案的一部分,否则,您可能会在行尾得到换行符