diff --git a/.gitlab-ci/farm-rules.yml b/.gitlab-ci/farm-rules.yml index 0f7cfae0eb9..6e2695af68c 100644 --- a/.gitlab-ci/farm-rules.yml +++ b/.gitlab-ci/farm-rules.yml @@ -79,22 +79,20 @@ .collabora-farm-rules: rules: - - if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/' - exists: [ .ci-farms-disabled/collabora ] + - exists: [ .ci-farms-disabled/collabora ] when: never - - if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"' + - if: '$CI_PIPELINE_SOURCE != "schedule"' changes: [ .ci-farms-disabled/collabora ] when: on_success - - if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"' + - if: '$CI_PIPELINE_SOURCE != "schedule"' changes: [ .ci-farms-disabled/* ] when: never .collabora-farm-manual-rules: rules: - - if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/' - exists: [ .ci-farms-disabled/collabora ] + - exists: [ .ci-farms-disabled/collabora ] when: never - - if: '$RUNNER_TAG =~ /^mesa-ci-x86-64-lava-/ && $CI_PIPELINE_SOURCE != "schedule"' + - if: '$CI_PIPELINE_SOURCE != "schedule"' changes: [ .ci-farms-disabled/collabora ] when: never - !reference [.collabora-farm-rules, rules]