diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-05-03 16:40:43 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-05-03 16:40:43 +0000 |
commit | c5bca70d550434001e544824ce182cce68a58677 (patch) | |
tree | 2ef62d87a5ce7307a79c767cc1c885c73f981912 /.gitlab-ci.yml | |
parent | 593b64692c3a63966244b13cefe9154449f73bca (diff) | |
download | gitlab-ce-c5bca70d550434001e544824ce182cce68a58677.tar.gz |
Move api lint out of static analysis job
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa62a86d31d..7f665f19132 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -264,11 +264,15 @@ spinach mysql 9 10: *spinach-knapsack-mysql static-analysis: <<: *ruby-static-analysis <<: *dedicated-runner + <<: *except-docs stage: test script: - scripts/static-analysis -docs:check:links: +# Documentation checks: +# - Check validity of relative links +# - Make sure cURL examples in API docs use the full switches +docs lint: image: "registry.gitlab.com/gitlab-org/gitlab-build-images:nanoc-bootstrap-ruby-2.4-alpine" stage: test <<: *dedicated-runner @@ -276,6 +280,7 @@ docs:check:links: dependencies: [] before_script: [] script: + - scripts/lint-doc.sh - mv doc/ /nanoc/content/ - cd /nanoc # Build HTML from Markdown |