2019-08-26 16:41:55 -04:00
|
|
|
.review-docs:
|
|
|
|
extends:
|
|
|
|
- .default-retry
|
2020-02-18 10:08:51 -05:00
|
|
|
- .docs:rules:review-docs
|
2020-02-06 01:08:52 -05:00
|
|
|
allow_failure: true
|
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-12-27 13:08:12 -05:00
|
|
|
# We're cloning the repo instead of downloading the script for now
|
|
|
|
# because some repos are private and CI_JOB_TOKEN cannot access files.
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/issues/191273
|
|
|
|
GIT_DEPTH: 1
|
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
|
2020-02-27 10:09:24 -05:00
|
|
|
auto_stop_in: 2 weeks
|
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:
|
|
|
|
- apk add --update openssl
|
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-12-27 13:08:12 -05:00
|
|
|
- ./scripts/trigger-build-docs deploy
|
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-12-27 13:08:12 -05:00
|
|
|
- ./scripts/trigger-build-docs cleanup
|
2019-04-12 04:56:38 -04:00
|
|
|
|
|
|
|
docs lint:
|
2019-08-26 16:41:55 -04:00
|
|
|
extends:
|
|
|
|
- .default-retry
|
2020-02-18 10:08:51 -05:00
|
|
|
- .docs:rules:docs-lint
|
2020-02-26 04:08:47 -05:00
|
|
|
image: "registry.gitlab.com/gitlab-org/gitlab-docs:lint"
|
2019-04-12 04:56:38 -04:00
|
|
|
stage: test
|
2020-02-20 13:08:51 -05:00
|
|
|
needs: []
|
2019-04-12 04:56:38 -04:00
|
|
|
script:
|
|
|
|
- scripts/lint-doc.sh
|
2019-08-27 05:15:15 -04:00
|
|
|
# Prepare docs for build
|
2020-03-05 10:07:52 -05:00
|
|
|
# The path must be 'ee/' because we have hardcoded links relying on it
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab-docs/-/blob/887850752fc0e72856da6632db132f005ba77f16/content/index.erb#L44-63
|
|
|
|
- mv doc/ /tmp/gitlab-docs/content/ee
|
2019-04-12 04:56:38 -04:00
|
|
|
- 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:
|
|
|
|
- .default-retry
|
|
|
|
- .default-cache
|
|
|
|
- .default-before_script
|
2020-02-18 10:08:51 -05:00
|
|
|
- .docs:rules:graphql-reference-verify
|
2020-04-28 05:09:34 -04:00
|
|
|
- .use-pg9
|
2019-10-16 14:08:01 -04:00
|
|
|
stage: test
|
2020-04-28 05:09:34 -04:00
|
|
|
needs: ["setup-test-env pg9"]
|
2019-10-16 14:08:01 -04:00
|
|
|
script:
|
|
|
|
- bundle exec rake gitlab:graphql:check_docs
|
2019-10-31 23:06:26 -04:00
|
|
|
- bundle exec rake gitlab:graphql:check_schema
|