例えば:
var output=sh "echo foo";
echo "output=$output";
私は手に入れます:
output=0
したがって、どうやら私はstdoutではなく終了コードを取得します。stdoutをパイプライン変数にキャプチャして、次のようにすることはできます
output=foo
か?結果として?
回答:
現在、このsh
ステップでは、パラメーターを指定してstdoutを返すことがサポートされていますreturnStdout
。
// 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の問題はその後解決されました。
JENKINS-26133で述べたように、シェル出力を変数として取得することはできませんでした。回避策として、一時ファイルからの書き込み読み取りの使用を提案しました。したがって、あなたの例は次のようになります。
sh "echo foo > result";
def output=readFile('result').trim()
echo "output=$output";
returnStdout
、sh
ステップに渡された新しいパラメーターによって簡単になりました。
stdout
とexit status
シェルコマンドから。それ以外の場合は、returnStdout
パラメーターを使用します。
この関数を使用して、StdErrStdOutをキャプチャしてコードを返すこともできます。
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()
この回答の一部に注意してください。そうしないと、行末に改行文字が表示される可能性があります