7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WindowsでJenkinsの変数を使う

Posted at

Jenkinsでは環境変数があらかじめ定義されています。
これは、【ビルド】→【ビルド手順の追加】→【Windowsのバッチコマンドの実行】を追加すれば、”
ビルドから利用可能な環境変数の一覧”というリンクから参照できます。

例)
BUILD_NUMBER
当該ビルドの番号。例 "153"
BUILD_ID
当該ビルドID。例 "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss)

これをシェルのなかで呼び出せば使用できます。
Windowsなので%BUILD_NUMBER%のように使用します。

ファイルパスの変数(%WORKSPACE%)を使用する場合は、"で囲む方が無難です。
(Jenkinsのデフォルトインストールの場所がProgram Files等のスペースを含むため)

例)
jmeter.bat -n -t ../testcase/sample.jmx -l "%WORKSPACE%%BUILD_ID%_result.jtl"
この様にしてやれば・・
jmeter.bat -n -t ../testcase/sample.jmx -l "C:\Program Files\Jenkins\workspace\jmetertest\2013-12-01_11-51-23_result.jtl"
の様に復元されます。

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?