ci: add quirk for GitLab assuming changes is always true for scheduled runs
Sadly GitLab CI always evaluate `rules:changes` as true, when running scheduled runs. So we have to add explicit condition to ignore it there. Every line using `rules:changes` has to have following condition ignoring "schedule" runes. Cc: mesa-stable Reported-by: Emma Anholt <emma@anholt.net> Reviewed-by: Eric Engestrom <eric@igalia.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24051>
This commit is contained in:

committed by
Marge Bot

parent
16b080b5d8
commit
79f7882fc6
@@ -3,8 +3,10 @@
|
||||
- exists: [ .ci-farms-disabled/microsoft ] # 1. Is disabled, never run
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/microsoft ] # 2. Removed from disabled, run
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ] # 3. We touched other farms in MR, do not run
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
# 4. Fall-through (other rules or on_success)
|
||||
|
||||
@@ -15,6 +17,7 @@
|
||||
- exists: [ .ci-farms-disabled/microsoft ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/microsoft ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.microsoft-farm-rules, rules]
|
||||
|
||||
@@ -25,6 +28,7 @@
|
||||
- exists: [ .ci-farms-disabled/microsoft ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/microsoft ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: manual
|
||||
- !reference [.microsoft-farm-rules, rules]
|
||||
|
||||
@@ -34,10 +38,10 @@
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/'
|
||||
exists: [ .ci-farms-disabled/collabora ]
|
||||
when: never
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/'
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
changes: [ .ci-farms-disabled/collabora ]
|
||||
when: on_success
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/'
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
changes: [ .ci-farms-disabled/* ]
|
||||
when: never
|
||||
|
||||
@@ -46,7 +50,7 @@
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/'
|
||||
exists: [ .ci-farms-disabled/collabora ]
|
||||
when: never
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/'
|
||||
- if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
changes: [ .ci-farms-disabled/collabora ]
|
||||
when: never
|
||||
- !reference [.collabora-farm-rules, rules]
|
||||
@@ -57,8 +61,10 @@
|
||||
- exists: [ .ci-farms-disabled/igalia ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/igalia ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
|
||||
.igalia-farm-manual-rules:
|
||||
@@ -66,6 +72,7 @@
|
||||
- exists: [ .ci-farms-disabled/igalia ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/igalia ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.igalia-farm-rules, rules]
|
||||
|
||||
@@ -75,8 +82,10 @@
|
||||
- exists: [ .ci-farms-disabled/lima ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/lima ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
|
||||
.lima-farm-manual-rules:
|
||||
@@ -84,6 +93,7 @@
|
||||
- exists: [ .ci-farms-disabled/lima ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/lima ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.lima-farm-rules, rules]
|
||||
|
||||
@@ -93,8 +103,10 @@
|
||||
- exists: [ .ci-farms-disabled/anholt ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/anholt ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
|
||||
.anholt-farm-manual-rules:
|
||||
@@ -102,6 +114,7 @@
|
||||
- exists: [ .ci-farms-disabled/anholt ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/anholt ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.anholt-farm-rules, rules]
|
||||
|
||||
@@ -115,10 +128,10 @@
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords"'
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/valve-mupuf ]
|
||||
if: '$RUNNER_FARM_LOCATION == "mupuf"'
|
||||
if: '$RUNNER_FARM_LOCATION == "mupuf" && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/valve-kws ]
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords"'
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords" && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
when: never
|
||||
@@ -132,10 +145,10 @@
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords"'
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/valve-mupuf ]
|
||||
if: '$RUNNER_FARM_LOCATION == "mupuf"'
|
||||
if: '$RUNNER_FARM_LOCATION == "mupuf" && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/valve-kws ]
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords"'
|
||||
if: '$RUNNER_FARM_LOCATION == "keywords" && $CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.valve-farm-rules, rules]
|
||||
|
||||
@@ -145,8 +158,10 @@
|
||||
- exists: [ .ci-farms-disabled/austriancoder ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/austriancoder ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
|
||||
.austriancoder-farm-manual-rules:
|
||||
@@ -154,6 +169,7 @@
|
||||
- exists: [ .ci-farms-disabled/austriancoder ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/austriancoder ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.austriancoder-farm-rules, rules]
|
||||
|
||||
@@ -163,8 +179,10 @@
|
||||
- exists: [ .ci-farms-disabled/freedreno ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/freedreno ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: on_success
|
||||
- changes: [ .ci-farms-disabled/* ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
|
||||
.freedreno-farm-manual-rules:
|
||||
@@ -172,6 +190,7 @@
|
||||
- exists: [ .ci-farms-disabled/freedreno ]
|
||||
when: never
|
||||
- changes: [ .ci-farms-disabled/freedreno ]
|
||||
if: '$CI_PIPELINE_SOURCE != "schedule"'
|
||||
when: never
|
||||
- !reference [.freedreno-farm-rules, rules]
|
||||
|
||||
|
Reference in New Issue
Block a user