4
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.

Jenkins CLIを利用してビルドの表示名、説明を設定する

Last updated at Posted at 2017-10-31

はじめに

Jenkins CLIを利用してビルド表示名、説明を設定する方法について調べたので備忘録として投稿させていただきます。

やりたかったこと

  • Jenkinsのビルド中に表示名、説明を更新する
  • POST(curlコマンドなど)を利用せずに実現する

Jenkins CLIの配置場所

POST(curlコマンドなど)を利用せずにビルド表示名、説明を更新するためにJenkins CLIを利用しました。

Jenkins CLIはJENKINS_HOME配下のwar/WEB-INF/jenkins-cli.jarに配置されてます。
http://<Jenkinsのアドレス:ポート>/cliにアクセスして、Jenkins CLIページからDLすることも可能です。

Jenkins CLIページでは利用可能なコマンドのヘルプを閲覧することも可能です。

jenkins01.png

-sオプションについて

ヘルプなどでは-sオプションでJenkinsのURLを指定してますが、Jenkinsの管理 > システムの設定 > Jenkinの位置 > Jenkins URLが設定済みであれば省略可能です。

jenkins02.png

JenkinsURL未設定
$ java -jar jenkins-cli.jar -s http://<Jenkinsのアドレス:ポート> help
JenkinsURL設定済み
$ java -jar jenkins-cli.jar help

コマンド

Jenkins CLIページにビルド表示名、説明の設定方法が記載されているので、これを参考にシェルスクリプトを設定します。

ビルド表示名(set-build-display-name)
java -jar jenkins-cli.jar -s http://xxx.xxx.xxx.xxx/ set-build-display-name JOB BUILD# DISPLAYNAME
ビルドの名称を設定します。

 JOB         : Name of the job to build
 BUILD#      : Number of the build
 DISPLAYNAME : DisplayName to be set. '-' to read from stdin.
ビルド説明(set-build-description)
java -jar jenkins-cli.jar -s http://xxx.xxx.xxx.xxx/ set-build-description JOB BUILD# DESCRIPTION
ビルドの説明を設定します。

 JOB         : Name of the job to build
 BUILD#      : Number of the build
 DESCRIPTION : Description to be set. '=' to read from stdin.

シェルスクリプト

今回はビルドしているジョブ自身の表示名、説明を更新するので、ビルドから利用可能な環境変数を利用して以下のようなシェルスクリプトを設定しました。

JENKINS_CLI=$JENKINS_HOME/war/WEB-INF/jenkins-cli.jar

java -jar $JENKINS_CLI set-build-display-name $JOB_NAME $BUILD_NUMBER "設定したいビルド表示名"
java -jar $JENKINS_CLI set-build-description $JOB_NAME $BUILD_NUMBER "設定したいビルド説明"

jenkins04.png

ビルドを実行するとビルド履歴にシェルスクリプトで設定した表示名、説明が表示されるようになりました。

Jenkins03.png

4
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
4
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?