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
|
2021-02-03 13:09:25 -05:00
|
|
|
image: ${GITLAB_DEPENDENCY_PROXY}ruby:2.7-alpine
|
2019-08-26 16:41:55 -04:00
|
|
|
stage: review
|
2020-10-20 05:08:43 -04:00
|
|
|
needs: []
|
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
|
2021-05-31 02:10:40 -04:00
|
|
|
# By default, deploy the Review App using the `main` branch of the `gitlab-org/gitlab-docs` project
|
|
|
|
DOCS_BRANCH: main
|
2019-04-12 04:56:38 -04:00
|
|
|
environment:
|
2021-03-17 08:09:19 -04:00
|
|
|
name: review-docs/mr-${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
|
2021-03-17 08:09:19 -04:00
|
|
|
url: http://${DOCS_BRANCH}-${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:
|
2021-03-17 08:09:19 -04:00
|
|
|
- source ./scripts/utils.sh
|
|
|
|
- install_gitlab_gem
|
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:
|
2020-07-22 23:09:42 -04: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:
|
2021-03-17 08:09:19 -04:00
|
|
|
name: review-docs/mr-${CI_MERGE_REQUEST_IID}
|
2019-04-12 04:56:38 -04:00
|
|
|
action: stop
|
|
|
|
script:
|
2020-07-22 23:09:42 -04:00
|
|
|
- ./scripts/trigger-build docs cleanup
|
2019-04-12 04:56:38 -04:00
|
|
|
|
2020-11-11 07:09:06 -05:00
|
|
|
docs-lint markdown:
|
2019-08-26 16:41:55 -04:00
|
|
|
extends:
|
|
|
|
- .default-retry
|
2020-02-18 10:08:51 -05:00
|
|
|
- .docs:rules:docs-lint
|
2020-11-16 22:09:06 -05:00
|
|
|
# When updating the image version here, update it in /scripts/lint-doc.sh too.
|
2021-04-30 05:10:21 -04:00
|
|
|
image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.13-vale-2.10.2-markdownlint-0.26.0
|
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
|
2020-11-11 07:09:06 -05:00
|
|
|
|
|
|
|
docs-lint links:
|
|
|
|
extends:
|
|
|
|
- .docs:rules:docs-lint
|
2021-07-06 02:08:10 -04:00
|
|
|
image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2-d2b92621
|
2020-11-11 07:09:06 -05:00
|
|
|
stage: test
|
|
|
|
needs: []
|
|
|
|
script:
|
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
|
2021-04-09 14:09:24 -04:00
|
|
|
# Check the internal links and anchors (in parallel)
|
|
|
|
- "parallel time bundle exec nanoc check ::: internal_links internal_anchors"
|
2019-10-16 14:08:01 -04:00
|
|
|
|
2020-07-17 02:09:11 -04:00
|
|
|
ui-docs-links lint:
|
|
|
|
extends:
|
|
|
|
- .docs:rules:docs-lint
|
|
|
|
- .static-analysis-base
|
|
|
|
stage: test
|
|
|
|
needs: []
|
|
|
|
script:
|
|
|
|
- bundle exec haml-lint -i DocumentationLinks
|