2019-08-26 16:41:55 -04:00
|
|
|
.review-docs:
|
|
|
|
extends:
|
|
|
|
- .default-tags
|
|
|
|
- .default-retry
|
2019-10-31 02:06:31 -04:00
|
|
|
- .only:variables-canonical-dot-com
|
2019-10-30 17:07:58 -04:00
|
|
|
- .only:changes-docs
|
2019-09-17 10:16:34 -04:00
|
|
|
only:
|
|
|
|
refs:
|
|
|
|
- merge_requests
|
2019-08-26 16:41:55 -04:00
|
|
|
image: ruby:2.6-alpine
|
|
|
|
stage: review
|
|
|
|
dependencies: []
|
2019-04-12 04:56:38 -04:00
|
|
|
variables:
|
2019-08-26 16:41:55 -04:00
|
|
|
GIT_STRATEGY: none
|
2019-04-12 04:56:38 -04:00
|
|
|
environment:
|
2019-10-14 05:07:54 -04:00
|
|
|
name: review-docs/$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID
|
2019-04-12 04:56:38 -04:00
|
|
|
# DOCS_REVIEW_APPS_DOMAIN and DOCS_GITLAB_REPO_SUFFIX are CI variables
|
2019-09-14 05:06:20 -04:00
|
|
|
# Discussion: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/14236/diffs#note_40140693
|
2019-10-14 05:07:54 -04:00
|
|
|
url: http://docs-preview-$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID.$DOCS_REVIEW_APPS_DOMAIN/$DOCS_GITLAB_REPO_SUFFIX
|
2019-04-12 04:56:38 -04:00
|
|
|
on_stop: review-docs-cleanup
|
2019-08-26 16:41:55 -04:00
|
|
|
before_script:
|
|
|
|
# We don't clone the repo by using GIT_STRATEGY: none and only download the
|
|
|
|
# single script we need here so it's much faster than cloning.
|
|
|
|
- apk add --update openssl
|
|
|
|
- wget $CI_PROJECT_URL/raw/$CI_COMMIT_SHA/scripts/trigger-build-docs
|
|
|
|
- chmod 755 trigger-build-docs
|
2019-12-17 04:07:48 -05:00
|
|
|
- gem install httparty --no-document --version 0.17.3
|
|
|
|
- gem install gitlab --no-document --version 4.13.0
|
2019-04-12 04:56:38 -04:00
|
|
|
|
|
|
|
# Always trigger a docs build in gitlab-docs only on docs-only branches.
|
|
|
|
# Useful to preview the docs changes live.
|
|
|
|
review-docs-deploy:
|
2019-09-17 10:16:34 -04:00
|
|
|
extends: .review-docs
|
2019-04-12 04:56:38 -04:00
|
|
|
script:
|
2019-08-26 16:41:55 -04:00
|
|
|
- ./trigger-build-docs deploy
|
2019-09-17 10:16:34 -04:00
|
|
|
when: manual
|
2019-04-12 04:56:38 -04:00
|
|
|
|
|
|
|
# Cleanup remote environment of gitlab-docs
|
|
|
|
review-docs-cleanup:
|
2019-09-17 10:16:34 -04:00
|
|
|
extends: .review-docs
|
2019-04-12 04:56:38 -04:00
|
|
|
environment:
|
2019-10-14 05:07:54 -04:00
|
|
|
name: review-docs/$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID
|
2019-04-12 04:56:38 -04:00
|
|
|
action: stop
|
|
|
|
script:
|
2019-08-26 16:41:55 -04:00
|
|
|
- ./trigger-build-docs cleanup
|
2019-04-12 04:56:38 -04:00
|
|
|
when: manual
|
|
|
|
|
|
|
|
docs lint:
|
2019-08-26 16:41:55 -04:00
|
|
|
extends:
|
|
|
|
- .default-tags
|
|
|
|
- .default-retry
|
2019-09-17 10:16:34 -04:00
|
|
|
- .default-only
|
2019-10-30 17:07:58 -04:00
|
|
|
- .only:changes-docs
|
2019-04-12 04:56:38 -04:00
|
|
|
image: "registry.gitlab.com/gitlab-org/gitlab-build-images:gitlab-docs-lint"
|
|
|
|
stage: test
|
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- scripts/lint-doc.sh
|
2019-08-27 05:15:15 -04:00
|
|
|
# Lint Markdown
|
2019-09-01 20:19:30 -04:00
|
|
|
- markdownlint --config .markdownlint.json 'doc/**/*.md'
|
2019-08-27 05:15:15 -04:00
|
|
|
# Prepare docs for build
|
2019-04-12 04:56:38 -04:00
|
|
|
- mv doc/ /tmp/gitlab-docs/content/$DOCS_GITLAB_REPO_SUFFIX
|
|
|
|
- cd /tmp/gitlab-docs
|
|
|
|
# Build HTML from Markdown
|
|
|
|
- bundle exec nanoc
|
|
|
|
# Check the internal links
|
|
|
|
- bundle exec nanoc check internal_links
|
|
|
|
# Check the internal anchor links
|
|
|
|
- bundle exec nanoc check internal_anchors
|
2019-10-16 14:08:01 -04:00
|
|
|
|
2019-10-31 23:06:26 -04:00
|
|
|
graphql-reference-verify:
|
2019-10-16 14:08:01 -04:00
|
|
|
extends:
|
2019-10-17 05:07:07 -04:00
|
|
|
- .only-ee
|
2019-10-16 14:08:01 -04:00
|
|
|
- .default-tags
|
|
|
|
- .default-retry
|
|
|
|
- .default-cache
|
|
|
|
- .default-only
|
|
|
|
- .default-before_script
|
2019-11-05 10:06:17 -05:00
|
|
|
- .only:changes-code-backstage-qa
|
2019-11-04 04:06:21 -05:00
|
|
|
- .use-pg9
|
2019-10-16 14:08:01 -04:00
|
|
|
stage: test
|
|
|
|
needs: ["setup-test-env"]
|
|
|
|
script:
|
|
|
|
- bundle exec rake gitlab:graphql:check_docs
|
2019-10-31 23:06:26 -04:00
|
|
|
- bundle exec rake gitlab:graphql:check_schema
|