1. ホーム
  2. jenkins

[解決済み] パイプラインでsh DSLコマンドのstdoutをキャプチャすることは可能ですか?

2022-11-05 09:38:44

質問

例えば

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

もらう。

output=0

ということで、どうやらstdoutではなくexit codeが表示されるようです。パイプライン変数にstdoutを取り込むことは可能でしょうか? output=foo を結果として得ることは可能でしょうか?

どのように解決するのですか?

今すぐ は、その sh ステップ を返すことをサポートしています。 標準出力 というパラメータを与えることで 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)

参照 この例 .