mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 05:10:10 -05:00
29 lines
699 B
YAML
29 lines
699 B
YAML
# Rules for where jobs can run
|
|
|
|
.run_manually:
|
|
rules:
|
|
- if: '$CMAKE_CI_PACKAGE == "true"'
|
|
when: never
|
|
- if: '$CI_MERGE_REQUEST_ID'
|
|
when: manual
|
|
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
|
|
when: delayed
|
|
start_in: 5 minutes
|
|
- when: never
|
|
|
|
.run_automatically:
|
|
rules:
|
|
- if: '$CMAKE_CI_PACKAGE == "true"'
|
|
when: never
|
|
- if: '$CI_MERGE_REQUEST_ID'
|
|
when: on_success
|
|
- if: '$CI_PROJECT_PATH == "cmake/cmake"'
|
|
when: on_success
|
|
- when: never
|
|
|
|
.run_only_for_package:
|
|
rules:
|
|
- if: '$CMAKE_CI_PACKAGE == "true"'
|
|
when: on_success
|
|
- when: never
|