How to get build status from GitLab CI?

I have found such link http://some.domain/projects/:ID/builds/:SHA/status . Problem resolved


GitLab CI is based on Travis, which provide build status url and even build status picture:

https://travis-ci.org/[YOUR_GITHUB_USERNAME]/[YOUR_PROJECT_NAME].png
# or, limited to some branches
https://travis-ci.org/[YOUR_GITHUB_USERNAME]/[YOUR_PROJECT_NAME].png?branch=master,staging,production

Joran Beasley mentions the url:

http://gitlabci.example.com/projects/2/status.png?ref=master

Now you can get the badge from this url:

https://gitlab.com/[namespace]/[project]/badges/[branch]/pipeline.svg

Tags:

Gitlab