mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-24 09:09:43 -05:00
726766713b
This avoids making busted jobs if a prerequisite fails.
19 lines
439 B
YAML
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
|