debian-mirror-gitlab/.gitlab/ci/docs.gitlab-ci.yml

83 lines
2.6 KiB
YAML
Raw Normal View History

2019-12-04 20:38:33 +05:30
.review-docs:
extends:
- .default-retry
2020-03-13 15:44:24 +05:30
- .docs:rules:review-docs
2019-12-04 20:38:33 +05:30
image: ruby:2.6-alpine
stage: review
dependencies: []
2019-07-31 22:56:46 +05:30
variables:
2020-03-13 15:44:24 +05:30
# 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-07-31 22:56:46 +05:30
environment:
2019-12-21 20:55:43 +05:30
name: review-docs/$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID
2019-07-31 22:56:46 +05:30
# DOCS_REVIEW_APPS_DOMAIN and DOCS_GITLAB_REPO_SUFFIX are CI variables
2019-12-04 20:38:33 +05:30
# Discussion: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/14236/diffs#note_40140693
2020-04-08 14:13:33 +05:30
auto_stop_in: 2 weeks
2019-12-21 20:55:43 +05:30
url: http://docs-preview-$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID.$DOCS_REVIEW_APPS_DOMAIN/$DOCS_GITLAB_REPO_SUFFIX
2019-07-31 22:56:46 +05:30
on_stop: review-docs-cleanup
2019-12-04 20:38:33 +05:30
before_script:
- apk add --update openssl
2020-01-01 13:55:28 +05:30
- gem install httparty --no-document --version 0.17.3
- gem install gitlab --no-document --version 4.13.0
2019-07-31 22:56:46 +05:30
# Always trigger a docs build in gitlab-docs only on docs-only branches.
# Useful to preview the docs changes live.
review-docs-deploy:
2019-12-04 20:38:33 +05:30
extends: .review-docs
2019-07-31 22:56:46 +05:30
script:
2020-10-24 23:57:45 +05:30
- ./scripts/trigger-build docs deploy
2019-07-31 22:56:46 +05:30
# Cleanup remote environment of gitlab-docs
review-docs-cleanup:
2019-12-04 20:38:33 +05:30
extends: .review-docs
2019-07-31 22:56:46 +05:30
environment:
2019-12-21 20:55:43 +05:30
name: review-docs/$DOCS_GITLAB_REPO_SUFFIX-$CI_MERGE_REQUEST_IID
2019-07-31 22:56:46 +05:30
action: stop
script:
2020-10-24 23:57:45 +05:30
- ./scripts/trigger-build docs cleanup
2019-07-31 22:56:46 +05:30
docs lint:
2019-12-04 20:38:33 +05:30
extends:
- .default-retry
2020-03-13 15:44:24 +05:30
- .docs:rules:docs-lint
2020-04-08 14:13:33 +05:30
image: "registry.gitlab.com/gitlab-org/gitlab-docs:lint"
2019-07-31 22:56:46 +05:30
stage: test
2020-04-08 14:13:33 +05:30
needs: []
2019-07-31 22:56:46 +05:30
script:
- scripts/lint-doc.sh
2019-12-04 20:38:33 +05:30
# Prepare docs for build
2020-04-08 14:13:33 +05:30
# 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-07-31 22:56:46 +05:30
- 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-12-21 20:55:43 +05:30
2020-07-28 23:09:34 +05:30
ui-docs-links lint:
extends:
- .docs:rules:docs-lint
- .static-analysis-base
stage: test
needs: []
script:
- bundle exec haml-lint -i DocumentationLinks
2019-12-26 22:10:19 +05:30
graphql-reference-verify:
2019-12-21 20:55:43 +05:30
extends:
- .default-retry
2020-06-23 00:09:42 +05:30
- .rails-cache
2019-12-21 20:55:43 +05:30
- .default-before_script
2020-03-13 15:44:24 +05:30
- .docs:rules:graphql-reference-verify
2020-04-22 19:07:51 +05:30
- .use-pg11
2019-12-21 20:55:43 +05:30
stage: test
2020-05-24 23:13:21 +05:30
needs: ["setup-test-env"]
2019-12-21 20:55:43 +05:30
script:
- bundle exec rake gitlab:graphql:check_docs
2019-12-26 22:10:19 +05:30
- bundle exec rake gitlab:graphql:check_schema