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:
authorEvan Read <eread@gitlab.com>2021-04-15 01:45:10 +0300
committerEvan Read <eread@gitlab.com>2021-04-15 01:45:10 +0300
commit34019b086250071d1919e3efee69c3566a3d095a (patch)
treea1d9316c71fd0e004f36f256f8c5d3b4cfd2683c /.gitlab-ci.yml
parent561b2e530b935d41235918dfa917c53f220f22e9 (diff)
parent27518eed2072f9285169e2bdd8feb1ee342ea4f7 (diff)
Merge branch 'unlinked-file-test' into 'master'
Stop testing for unlinked docs See merge request gitlab-org/gitlab-docs!1697
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1708bec3..c5a59b29 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -334,7 +334,7 @@ test_EOL_whitespace:
- markdownlint --version
- markdownlint -c .markdownlint.json **/*.md
-test_unlinked_files:
+test_unlinked_images:
extends:
- .rules_chores
- .cache_gem
@@ -345,18 +345,18 @@ test_unlinked_files:
dependencies: []
script:
- bundle exec rake setup_git default
- - cp tasks/unlinked-files.sh tmp/ee/unlinked-files.sh
- - cp tasks/unlinked-files.sh tmp/charts/unlinked-files.sh
- - cp tasks/unlinked-files.sh tmp/omnibus/unlinked-files.sh
- - cp tasks/unlinked-files.sh tmp/runner/unlinked-files.sh
+ - 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
- - ./unlinked-files.sh doc
+ - ./unlinked-images.sh doc
- cd ../charts
- - ./unlinked-files.sh doc
+ - ./unlinked-images.sh doc
- cd ../runner
- - ./unlinked-files.sh docs
+ - ./unlinked-images.sh docs
- cd ../ee
- - ./unlinked-files.sh doc
+ - ./unlinked-images.sh doc
###############################################
# Review Apps #