summaryrefslogtreecommitdiff
path: root/.gitlab/rules.yml
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2020-06-12 12:50:12 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2020-06-12 12:56:03 -0400
commita1fe6ad62129c14e9dcae5c61d40bea55c81a497 (patch)
tree4f09d7f096f975af62a17fab2555aaddf52c4cb9 /.gitlab/rules.yml
parentfda8b79f880877a9f07839dcabc9cd7854685e92 (diff)
downloadcmake-a1fe6ad62129c14e9dcae5c61d40bea55c81a497.tar.gz
gitlab-ci: use `extends`
YAML anchors are not supported across include files.
Diffstat (limited to '.gitlab/rules.yml')
-rw-r--r--.gitlab/rules.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/rules.yml b/.gitlab/rules.yml
index 3dc06f7ec6..96b95c8061 100644
--- a/.gitlab/rules.yml
+++ b/.gitlab/rules.yml
@@ -1,6 +1,6 @@
# Rules for where jobs can run
-.run_manually: &run_manually
+.run_manually:
rules:
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
when: delayed
@@ -9,7 +9,7 @@
when: manual
- when: never
-.run_automatically: &run_automatically
+.run_automatically:
rules:
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
when: always