Files
CMake/.gitlab/rules.yml
T
Ben Boeckel 726766713b gitlab-ci: avoid failing dependent steps
This avoids making busted jobs if a prerequisite fails.
2020-07-27 10:02:34 -04:00

19 lines
439 B
YAML

# Rules for where jobs can run
.run_manually:
rules:
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
when: delayed
start_in: 5 minutes
- if: '$CI_MERGE_REQUEST_ID'
when: manual
- when: never
.run_automatically:
rules:
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
when: on_success
- if: '$CI_MERGE_REQUEST_ID'
when: on_success
- when: never