summaryrefslogtreecommitdiff
path: root/doc/api/builds.md
diff options
context:
space:
mode:
authorTomasz Maczukin <tomasz@maczukin.pl>2016-01-05 16:36:14 +0100
committerTomasz Maczukin <tomasz@maczukin.pl>2016-01-05 16:36:14 +0100
commita862ade55bf68f56734538b40e02e56036f8a1bd (patch)
treeea1144d39fd995d40ce2ac8a766afdde149a11da /doc/api/builds.md
parent962b97d813b2296391519113fdfbed60fc14ad78 (diff)
downloadgitlab-ce-a862ade55bf68f56734538b40e02e56036f8a1bd.tar.gz
Update ./doc/api/
Diffstat (limited to 'doc/api/builds.md')
-rw-r--r--doc/api/builds.md206
1 files changed, 206 insertions, 0 deletions
diff --git a/doc/api/builds.md b/doc/api/builds.md
new file mode 100644
index 00000000000..b716499dd36
--- /dev/null
+++ b/doc/api/builds.md
@@ -0,0 +1,206 @@
+# Builds API
+
+## List project builds
+
+Get a list of builds in a project.
+
+```
+GET /projects/:id/builds
+```
+
+Parameters:
+
+- `id` (required) - The ID of a project
+- `scope` (optional) - The scope of builds to show (one of: `all`, `finished`, `running`; default: `all`)
+
+```json
+[
+ {
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-04T15:41:23.147Z",
+ "finished_at": null,
+ "id": 65,
+ "name": "brakeman",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+ },
+ {
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-04T15:41:23.046Z",
+ "finished_at": null,
+ "id": 64,
+ "name": "rubocop",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+ }
+]
+```
+
+## List commit builds
+
+Get a list of builds for specific commit in a project.
+
+```
+GET /projects/:id/builds/commit/:sha
+```
+
+Parameters:
+
+- `id` (required) - The ID of a project
+- `sha` (required) - The SHA id of a commit
+- `scope` (optional) - The scope of builds to show (one of: `all`, `finished`, `running`; default: `all`)
+
+
+```json
+[
+ {
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-04T15:41:23.147Z",
+ "finished_at": null,
+ "id": 65,
+ "name": "brakeman",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+ },
+ {
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-04T15:41:23.046Z",
+ "finished_at": null,
+ "id": 64,
+ "name": "rubocop",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+ }
+]
+```
+
+## Get a single build
+
+Get a single build of a project
+
+```
+GET /projects/:id/builds/:build_id
+```
+
+Parameters:
+
+- `id` (required) - The ID of a project
+- `build_id` (required) - The ID of a build
+
+```json
+{
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-04T15:41:23.046Z",
+ "finished_at": null,
+ "id": 64,
+ "name": "rubocop",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+}
+```
+
+## Cancel a build
+
+Cancel a single build of a project
+
+```
+POST /projects/:id/builds/:build_id/cancel
+```
+
+Parameters:
+
+- `id` (required) - The ID of a project
+- `build_id` (required) - The ID of a build
+
+```json
+{
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-05T15:33:25.936Z",
+ "finished_at": "2016-01-05T15:33:47.553Z",
+ "id": 66,
+ "name": "rubocop",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "canceled"
+}
+```
+
+## Retry a build
+
+Retry a single build of a project
+
+```
+POST /projects/:id/builds/:build_id/retry
+```
+
+Parameters:
+
+- `id` (required) - The ID of a project
+- `build_id` (required) - The ID of a build
+
+```json
+{
+ "commit": {
+ "committed_at": "2015-12-28T14:34:03.814Z",
+ "id": 2,
+ "ref": null,
+ "sha": "6b053ad388c531c21907f022933e5e81598db388"
+ },
+ "created_at": "2016-01-05T15:33:25.936Z",
+ "finished_at": null,
+ "id": 66,
+ "name": "rubocop",
+ "ref": "master",
+ "runner": null,
+ "stage": "test",
+ "started_at": null,
+ "status": "pending"
+}
+```