Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
a862ade5
Commit
a862ade5
authored
Jan 05, 2016
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ./doc/api/
parent
962b97d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
209 additions
and
1 deletion
+209
-1
doc/api/README.md
doc/api/README.md
+1
-0
doc/api/builds.md
doc/api/builds.md
+206
-0
lib/api/builds.rb
lib/api/builds.rb
+2
-1
No files found.
doc/api/README.md
View file @
a862ade5
...
...
@@ -23,6 +23,7 @@
-
[
Namespaces
](
namespaces.md
)
-
[
Settings
](
settings.md
)
-
[
Keys
](
keys.md
)
-
[
Builds
](
builds.md
)
## Clients
...
...
doc/api/builds.md
0 → 100644
View file @
a862ade5
# 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"
}
```
lib/api/builds.rb
View file @
a862ade5
...
...
@@ -8,7 +8,7 @@ module API
#
# Parameters:
# id (required) - The ID of a project
# scope (optional) - The scope of builds to show (one of: all, finished, running)
# scope (optional) - The scope of builds to show (one of: all, finished, running
; default: all
)
# page (optional) - The page number for pagination
# per_page (ooptional) - The value of items per page to show
# Example Request:
...
...
@@ -24,6 +24,7 @@ module API
# 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)
# Example Request:
# GET /projects/:id/builds/commit/:sha
get
':id/builds/commit/:sha'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment