2017-08-21 02:38:09 -04:00
|
|
|
# Validate the .gitlab-ci.yml (API)
|
|
|
|
|
|
|
|
> [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
|
|
|
|
|
|
|
```
|
|
|
|
POST /lint
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| ---------- | ------- | -------- | -------- |
|
|
|
|
| `content` | string | yes | the .gitlab-ci.yaml content|
|
|
|
|
|
|
|
|
```bash
|
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
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"status": "valid",
|
|
|
|
"errors": []
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-11-13 01:07:16 -05:00
|
|
|
- Invalid content:
|
2017-08-21 02:38:09 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"status": "invalid",
|
|
|
|
"errors": [
|
|
|
|
"variables config should be a hash of key value pairs"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-11-13 01:07:16 -05:00
|
|
|
- Without the content attribute:
|
2017-08-21 02:38:09 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"error": "content is missing"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
[ce-5953]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5953
|