0
0

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 3 years have passed since last update.

[01] Jenkins API を使って全ジョブの URL を取得する

Last updated at Posted at 2021-08-27
シリーズトップページ
[シリーズ 全3回] Jenkins の実行済み全ジョブのコンソールログを取得する

概要

次のようなジョブ定義の構造になっている場合に、

job
|-- A
    |-- ジョブ1
    |-- ジョブ2
    |-- ジョブ3

「ジョブ1」「ジョブ2」「ジョブ3」の URL (次) を取り出す方法.

http://<IP>:<PORT>/job/A/job/ジョブ1
http://<IP>:<PORT>/job/A/job/ジョブ2
http://<IP>:<PORT>/job/A/job/ジョブ3

実行例

ジョブ A の URL に対して api/json を付与して GET メソッドを発行し、
url フィールドを取り出せば良い.

ここでは jq コマンドで取り出しているが、JSON 構造を扱える他の方法でも良い.

$ curl -X GET --user '<ユーザ名>:<APIキー>' http://<IP>:<PORT>/job/A/api/json | \
  jq -r '.jobs[].url'

 
以上.

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?