Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Amirault <4155490-marcel.amirault@users.noreply.gitlab.com>2021-08-03 01:45:24 +0300
committerEvan Read <eread@gitlab.com>2021-08-03 01:45:24 +0300
commit6e168deb2dc4a23adaabbf0d7011e5bdb4579ee4 (patch)
treedcb16d6a27e5b94fb8e8da824ed76d8972ccd5ee /.gitlab-ci.yml
parent49bd576a0e394725f4ac74902a363a7d9d218a0f (diff)
Update TW chores jobs
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 37efba92..d34f5908 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -332,40 +332,39 @@ test_EOL_whitespace:
- .rules_chores
- .cache_gem
stage: test
- image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2
+ image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2-3fb5bfe0
needs: []
before_script: []
dependencies: []
script:
- yarn global add markdownlint-cli@$MARKDOWNLINT_VERSION
+ - apk add jq
- bundle exec rake setup_git default
- - mv tasks/whitespace_task.json tmp/.markdownlint.json
- - cd tmp
- - markdownlint --version
- - markdownlint -c .markdownlint.json **/*.md
+ - markdownlint --config tasks/whitespace_task.yml '../gitlab/doc/**/*.md' '../gitlab-runner/doc/**/*.md' '../omnibus-gitlab/doc/**/*.md' '../charts-gitlab/doc/**/*.md'
test_unlinked_images:
extends:
- .rules_chores
- .cache_gem
stage: test
- image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2
+ image: registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2-3fb5bfe0
needs: []
before_script: []
dependencies: []
script:
+ - apk add jq
- bundle exec rake setup_git default
- - cp tasks/unlinked-images.sh tmp/ee/unlinked-images.sh
- - cp tasks/unlinked-images.sh tmp/charts/unlinked-images.sh
- - cp tasks/unlinked-images.sh tmp/omnibus/unlinked-images.sh
- - cp tasks/unlinked-images.sh tmp/runner/unlinked-images.sh
- - cd tmp/omnibus
+ - cp tasks/unlinked-images.sh ../gitlab/unlinked-images.sh
+ - cp tasks/unlinked-images.sh ../charts-gitlab/unlinked-images.sh
+ - cp tasks/unlinked-images.sh ../omnibus-gitlab/unlinked-images.sh
+ - cp tasks/unlinked-images.sh ../gitlab-runner/unlinked-images.sh
+ - cd ../omnibus-gitlab
- ./unlinked-images.sh doc
- - cd ../charts
+ - cd ../charts-gitlab
- ./unlinked-images.sh doc
- - cd ../runner
+ - cd ../gitlab-runner
- ./unlinked-images.sh docs
- - cd ../ee
+ - cd ../gitlab
- ./unlinked-images.sh doc
###############################################