8
8

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 パラメーター付きビルドのメモ

Last updated at Posted at 2018-04-04

パラメータ付きビルド

ジョブの実行前にジョブの編集画面から設定している内容をパラメータにします。
パラメータを使うことで、似たようなジョブを複数作る必要がなくなります。
また、ジョブ実行前に都度、ジョブの編集画面から変更を加える手間を軽減させます。

以下に2つの設定手順を記載します。
  1.メール本文をパラメータに登録し、ジョブの実行時にメール本文を設定します。
  2.デプロイするモジュールをパラメータに登録し、ジョブの実行時にモジュールを設定します。

◇メール本文のパラメータ化
 ビルドのパラメータ化: テキスト
 名前: mailtext
  適当な名前。ここではmailtextとする。
 デフォルト値: デフォルトのメール本文
 説明: パラメータ付きビルドを実行する際に表示される説明文
--
mailtext.png

拡張E-mail通知
--
 デフォルトコンテンツ: $mailtext
メール本文.png

◇Powershellの環境変数をパラメータ化
 ビルドのパラメータ化: 文字列
 名前: modulename
  適当な名前。ここではmodulenameとする。
 デフォルト値: デフォルトのモジュール名
 説明: パラメータ付きビルドを実行する際に表示される説明文
--
module_name.png

Windows PowerShell
 Command: $env:modulename
--
powershell.png

上記の設定をした際のパラメータ付きビルドの画面は、以下のようになります。(mailtextのイメージのみです)
--
build-mailtext.png
--
ジョブの実行時にメール本文、モジュール名を指定出来るようになります。
パラメータは、他にもありますが、メモレベルのものなので、ここまでとします。

8
8
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
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?