- パイプラインのページネーション
- プロジェクトパイプライン一覧
- パイプラインの取得
- 最新のパイプラインの取得
- 新しいパイプラインの作成
- パイプライン内のジョブの再試行
- パイプラインのジョブキャンセル
- パイプラインを削除
パイプラインAPI
パイプラインのページネーション
デフォルトでは、APIの結果はページ分割されているため、GET
リクエストは一度に20件の結果を返します。
ページ分割についての詳細はこちらをご覧ください。
プロジェクトパイプライン一覧
フラグ: セルフマネジメントの GitLab では、デフォルトでリクエストのname
フィールドは無視されます。これを利用可能にするには、管理者がpipeline_name_search
という機能フラグを有効にします。GitLab.comでは、この機能は利用可能です。
プロジェクト内のパイプラインを一覧表示します。子パイプラインは結果に含まれませんが、子パイプラインを個別に取得できます。
GET /projects/:id/pipelines
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
scope | 文字列です。 | なし | パイプラインの範囲:running pending ,finished ,branches 、tags
|
status | 文字列です。 | なし | パイプラインの状況、1つ:created waiting_for_resource ,preparing ,pending ,running ,success ,failed ,canceled ,skipped ,manual 、scheduled
|
source | 文字列です。 | なし |
GitLab 14.3以降では、パイプラインがどのようにトリガーされたか、次のいずれかです:push web ,trigger ,schedule ,api ,external ,pipeline ,chat ,webide ,merge_request_event ,external_pull_request_event ,parent_pipeline ,ondemand_dast_scan , またはondemand_dast_validation 。 |
ref | 文字列です。 | なし | パイプラインのレフ |
sha | 文字列です。 | なし | パイプラインのSHA |
yaml_errors | boolean | なし | 無効な設定のパイプラインを返します。 |
username | 文字列です。 | なし | パイプラインをトリガーしたユーザーのユーザー名 |
updated_after | datetime | なし | 指定された日付以降に更新されたパイプラインを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
updated_before | datetime | なし | 指定された日付以前に更新されたパイプラインを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
name | 文字列です。 | なし | 指定した名前のパイプラインを返します。GitLab 15.11で導入されましたが、デフォルトでは利用できません。 |
order_by | 文字列です。 | なし |
id ,status ,ref ,updated_at またはuser_id (デフォルト:id ) でパイプラインをオーダー。 |
sort | 文字列です。 | なし | パイプラインをasc またはdesc 順番に desc 並べ替えますdesc (デフォルト: desc ) |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines"
レスポンスの例
[
{
"id": 47,
"iid": 12,
"project_id": 1,
"status": "pending",
"source": "push",
"ref": "new-pipeline",
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"name": "Build pipeline",
"web_url": "https://example.com/foo/bar/pipelines/47",
"created_at": "2016-08-11T11:28:34.085Z",
"updated_at": "2016-08-11T11:32:35.169Z"
},
{
"id": 48,
"iid": 13,
"project_id": 1,
"status": "pending",
"source": "web",
"ref": "new-pipeline",
"sha": "eb94b618fb5865b26e80fdd8ae531b7a63ad851a",
"name": "Build pipeline",
"web_url": "https://example.com/foo/bar/pipelines/48",
"created_at": "2016-08-12T10:06:04.561Z",
"updated_at": "2016-08-12T10:09:56.223Z"
}
]
パイプラインの取得
プロジェクトから1つのパイプラインを取得します。
子パイプラインを 1 つ取得することもできます。
GET /projects/:id/pipelines/:pipeline_id
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46"
レスポンスの例
{
"id": 46,
"iid": 11,
"project_id": 1,
"name": "Build pipeline",
"status": "success",
"ref": "main",
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"before_sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"tag": false,
"yaml_errors": null,
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"created_at": "2016-08-11T11:28:34.085Z",
"updated_at": "2016-08-11T11:32:35.169Z",
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
"duration": 123.65,
"queued_duration": 0.010,
"coverage": "30.0",
"web_url": "https://example.com/foo/bar/pipelines/46"
}
パイプラインの変数の取得
GET /projects/:id/pipelines/:pipeline_id/variables
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46/variables"
レスポンスの例
[
{
"key": "RUN_NIGHTLY_BUILD",
"variable_type": "env_var",
"value": "true"
},
{
"key": "foo",
"value": "bar"
}
]
パイプラインのテストレポートの取得
GET /projects/:id/pipelines/:pipeline_id/test_report
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
リクエスト例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46/test_report"
サンプルレスポンス
{
"total_time": 5,
"total_count": 1,
"success_count": 1,
"failed_count": 0,
"skipped_count": 0,
"error_count": 0,
"test_suites": [
{
"name": "Secure",
"total_time": 5,
"total_count": 1,
"success_count": 1,
"failed_count": 0,
"skipped_count": 0,
"error_count": 0,
"test_cases": [
{
"status": "success",
"name": "Security Reports can create an auto-remediation MR",
"classname": "vulnerability_management_spec",
"execution_time": 5,
"system_output": null,
"stack_trace": null
}
]
}
]
}
パイプラインのテストレポート概要の取得
GitLab 14.2で導入されました。
GET /projects/:id/pipelines/:pipeline_id/test_report_summary
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
リクエスト例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46/test_report_summary"
サンプルレスポンス
{
"total": {
"time": 1904,
"count": 3363,
"success": 3351,
"failed": 0,
"skipped": 12,
"error": 0,
"suite_error": null
},
"test_suites": [
{
"name": "test",
"total_time": 1904,
"total_count": 3363,
"success_count": 3351,
"failed_count": 0,
"skipped_count": 12,
"error_count": 0,
"build_ids": [
66004
],
"suite_error": null
}
]
}
最新のパイプラインの取得
プロジェクト内の特定の参照に対する最新のパイプラインを取得します。
GET /projects/:id/pipelines/latest
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
ref | 文字列です。 | なし | 最新のパイプラインをチェックするブランチまたはタグ。指定しない場合のデフォルトはデフォルトブランチです。 |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/latest"
レスポンスの例
{
"id": 287,
"iid": 144,
"project_id": 21,
"name": "Build pipeline",
"sha": "50f0acb76a40e34a4ff304f7347dcc6587da8a14",
"ref": "main",
"status": "success",
"source": "push",
"created_at": "2022-09-21T01:05:07.200Z",
"updated_at": "2022-09-21T01:05:50.185Z",
"web_url": "http://127.0.0.1:3000/test-group/test-project/-/pipelines/287",
"before_sha": "8a24fb3c5877a6d0b611ca41fc86edc174593e2b",
"tag": false,
"yaml_errors": null,
"user": {
"id": 1,
"username": "root",
"name": "Administrator",
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://127.0.0.1:3000/root"
},
"started_at": "2022-09-21T01:05:14.197Z",
"finished_at": "2022-09-21T01:05:50.175Z",
"committed_at": null,
"duration": 34,
"queued_duration": 6,
"coverage": null,
"detailed_status": {
"icon": "status_success",
"text": "passed",
"label": "passed",
"group": "success",
"tooltip": "passed",
"has_details": false,
"details_path": "/test-group/test-project/-/pipelines/287",
"illustration": null,
"favicon": "/assets/ci_favicons/favicon_status_success-8451333011eee8ce9f2ab25dc487fe24a8758c694827a582f17f42b0a90446a2.png"
}
}
新しいパイプラインの作成
iid
GitLab 14.6 で導入されたレスポンスで、単一のパイプラインを取得します。
POST /projects/:id/pipeline
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
ref | 文字列です。 | はい | パイプラインを実行するブランチまたはタグ。 |
variables | アレイ | なし | パイプラインで利用可能な変数を含むハッシュの配列で、[{ 'key': 'UPLOAD_TO_S3', 'variable_type': 'file', 'value': 'true' }, {'key': 'TEST', 'value': 'test variable'}] 構造体にマッチします。variable_type が除外されている場合、デフォルトはenv_var になります。 |
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipeline?ref=main"
レスポンスの例
{
"id": 61,
"iid": 21,
"project_id": 1,
"sha": "384c444e840a515b23f21915ee5766b87068a70d",
"ref": "main",
"status": "pending",
"before_sha": "0000000000000000000000000000000000000000",
"tag": false,
"yaml_errors": null,
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"created_at": "2016-11-04T09:36:13.747Z",
"updated_at": "2016-11-04T09:36:13.977Z",
"started_at": null,
"finished_at": null,
"committed_at": null,
"duration": null,
"queued_duration": 0.010,
"coverage": null,
"web_url": "https://example.com/foo/bar/pipelines/61"
}
パイプライン内のジョブの再試行
iid
GitLab 14.6 で導入されたレスポンスで、単一のパイプラインを取得します。
POST /projects/:id/pipelines/:pipeline_id/retry
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46/retry"
レスポンス
{
"id": 46,
"iid": 11,
"project_id": 1,
"status": "pending",
"ref": "main",
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"before_sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"tag": false,
"yaml_errors": null,
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"created_at": "2016-08-11T11:28:34.085Z",
"updated_at": "2016-08-11T11:32:35.169Z",
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
"duration": null,
"queued_duration": 0.010,
"coverage": null,
"web_url": "https://example.com/foo/bar/pipelines/46"
}
パイプラインのジョブキャンセル
POST /projects/:id/pipelines/:pipeline_id/cancel
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/pipelines/46/cancel"
レスポンス
{
"id": 46,
"iid": 11,
"project_id": 1,
"status": "canceled",
"ref": "main",
"sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"before_sha": "a91957a858320c0e17f3a0eca7cfacbff50ea29a",
"tag": false,
"yaml_errors": null,
"user": {
"name": "Administrator",
"username": "root",
"id": 1,
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
"web_url": "http://localhost:3000/root"
},
"created_at": "2016-08-11T11:28:34.085Z",
"updated_at": "2016-08-11T11:32:35.169Z",
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
"duration": null,
"queued_duration": 0.010,
"coverage": null,
"web_url": "https://example.com/foo/bar/pipelines/46"
}
パイプラインを削除
パイプラインを削除すると、すべてのパイプラインキャッシュが失効し、ビルド、ログ、アーティファクト、トリガーなど、すぐに関連するすべてのオブジェクトが削除されます。このアクションは元に戻せません。
パイプラインを削除しても、その子パイプラインは自動的に削除されません。詳細は関連イシューを参照してください。
DELETE /projects/:id/pipelines/:pipeline_id
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数/文字列 | はい | プロジェクトのIDまたはURLエンコードされたパス |
pipeline_id | 整数。 | はい | パイプラインのID |
curl --header "PRIVATE-TOKEN: <your_access_token>" --request "DELETE" "https://gitlab.example.com/api/v4/projects/1/pipelines/46"