2019-08-23 04:50:24 -04:00
|
|
|
# Validate the `.gitlab-ci.yml` (API)
|
2017-08-21 02:38:09 -04:00
|
|
|
|
|
|
|
> [Introduced][ce-5953] in GitLab 8.12.
|
|
|
|
|
2019-02-15 04:39:23 -05:00
|
|
|
Checks if your `.gitlab-ci.yml` file is valid.
|
2017-08-21 02:38:09 -04:00
|
|
|
|
|
|
|
```
|
2019-03-01 19:40:49 -05:00
|
|
|
POST /ci/lint
|
2017-08-21 02:38:09 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| ---------- | ------- | -------- | -------- |
|
2019-08-23 04:50:24 -04:00
|
|
|
| `content` | string | yes | the `.gitlab-ci.yaml` content|
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2020-01-30 10:09:15 -05:00
|
|
|
```shell
|
2019-01-01 05:23:37 -05:00
|
|
|
curl --header "Content-Type: application/json" https://gitlab.example.com/api/v4/ci/lint --data '{"content": "{ \"image\": \"ruby:2.6\", \"services\": [\"postgres\"], \"before_script\": [\"bundle install\", \"bundle exec rake db:create\"], \"variables\": {\"DB_NAME\": \"postgres\"}, \"types\": [\"test\", \"deploy\", \"notify\"], \"rspec\": { \"script\": \"rake spec\", \"tags\": [\"ruby\", \"postgres\"], \"only\": [\"branches\"]}}"}'
|
2017-08-21 02:38:09 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Be sure to copy paste the exact contents of `.gitlab-ci.yml` as YAML is very picky about indentation and spaces.
|
|
|
|
|
|
|
|
Example responses:
|
|
|
|
|
2018-11-13 01:07:16 -05:00
|
|
|
- Valid content:
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2019-07-09 03:16:17 -04:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"status": "valid",
|
|
|
|
"errors": []
|
|
|
|
}
|
|
|
|
```
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2018-11-13 01:07:16 -05:00
|
|
|
- Invalid content:
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2019-07-09 03:16:17 -04:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"status": "invalid",
|
|
|
|
"errors": [
|
|
|
|
"variables config should be a hash of key value pairs"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2018-11-13 01:07:16 -05:00
|
|
|
- Without the content attribute:
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2019-07-09 03:16:17 -04:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"error": "content is missing"
|
|
|
|
}
|
|
|
|
```
|
2017-08-21 02:38:09 -04:00
|
|
|
|
2020-02-06 10:09:11 -05:00
|
|
|
[ce-5953]: https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/5953
|