diff options
author | Katarzyna Kobierska <kkobierska@gmail.com> | 2016-09-05 11:06:16 +0200 |
---|---|---|
committer | Katarzyna Kobierska <kkobierska@gmail.com> | 2016-09-07 12:10:49 +0200 |
commit | ced7cf7bff2589da7d5134495064c897bac68634 (patch) | |
tree | e0ccdfb38fcdf7e681e22df5a168469034a8ff2c /doc | |
parent | 25ece82dab6de88a4d202ffc94a517f8d3e1d205 (diff) | |
download | gitlab-ce-ced7cf7bff2589da7d5134495064c897bac68634.tar.gz |
Improve documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/ci/lint.md | 89 |
1 files changed, 65 insertions, 24 deletions
diff --git a/doc/api/ci/lint.md b/doc/api/ci/lint.md index 876ee508474..74213f21de3 100644 --- a/doc/api/ci/lint.md +++ b/doc/api/ci/lint.md @@ -1,5 +1,7 @@ # Validate the .gitlab-ci.yml +> [Introduced][ce-5953] in GitLab 8.12. + Check whether your .gitlab-ci.yml file is valid. ``` @@ -11,35 +13,74 @@ POST ci/lint | `content` | hash | yes | the .gitlab-ci.yaml content| ```bash -curl --request POST "https://gitlab.example.com/api/v3/ci/lint?content=YAML+Content" +curl --request POST "https://gitlab.example.com/api/v3/ci/lint?content={ + image: "ruby:2.1", + services: ["postgres"], + before_script: ["gem install bundler", "bundle install", "bundle exec rake db:create"], + variables: {"DB_NAME": "postgres"}, + types: ["test", "deploy", "notify"], + rspec: { + script: "rake spec", + tags: ["ruby", "postgres"], + only: ["branches"] + }, + spinach: { + script: "rake spinach", + allow_failure: true, + tags: ["ruby", "mysql"], + except: ["tags"] + }, + staging: { + variables: {KEY1: "value1", KEY2: "value2"}, + script: "cap deploy stating", + type: "deploy", + tags: ["ruby", "mysql"], + except: ["stable"] + }, + production: { + variables: {DB_NAME: "mysql"}, + type: "deploy", + script: ["cap deploy production", "cap notify"], + tags: ["ruby", "mysql"], + only: ["master", "/^deploy-.*$/"] + }, + dockerhub: { + type: "notify", + script: "curl http://dockerhub/URL", + tags: ["ruby", "postgres"], + only: ["branches"] + } +}" ``` -Example response: +Be sure to copy paste the exact contents of `.gitlab-ci.yml` as YAML is very picky with indentation and spaces. -* valid content +Example responses: -```json -{ - "status": "valid", - "errors": [] -} -``` +* Valid content: -* invalid content + ```json + { + "status": "valid", + "errors": [] + } + ``` -```json -{ - "status": "invalid", - "errors": [ - "variables config should be a hash of key value pairs" - ] -} -``` +* Invalid content: -* without the content attribute + ```json + { + "status": "invalid", + "errors": [ + "variables config should be a hash of key value pairs" + ] + } + ``` -```json -{ - "error": "content is missing" -} -``` +* Without the content attribute: + + ```json + { + "error": "content is missing" + } + ``` |