Reminder to all repository users: Please do not add , commit and push any data files to your remote git repositories. The disk space the Git server is limited, it wasn't dimensioned to host anything else than code. Solely your code files need versioning. The data inputs/outputs don't. A good idea is to do "git add" individually on each file you want to commit, to avoid versioning unwanted content.

GitLab CI API

Purpose

The main purpose of GitLab CI API is to provide the necessary data and context for GitLab CI Runners.

All relevant information about the consumer API can be found in a separate document.

API Prefix

The current CI API prefix is /ci/api/v1.

You need to prepend this prefix to all examples in this documentation, like:

GET /ci/api/v1/builds/:id/artifacts

Resources