Module: Mesa Branch: staging/22.1 Commit: c7fe963150729ef61c77c7e531cf0ac858b449f1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c7fe963150729ef61c77c7e531cf0ac858b449f1
Author: Boris Brezillon <[email protected]> Date: Wed Apr 20 04:21:25 2022 -0700 ci/windows: Add a variable to globally disable jobs using windows runners Suggested-by: Daniel Stone <[email protected]> Acked-by: Daniel Stone <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16185> --- .gitlab-ci.yml | 1 + .gitlab-ci/test-source-dep.yml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 65db59562e1..e166eaed432 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ variables: # running on a particular CI farm (ie. for outages, etc): FD_FARM: "online" COLLABORA_FARM: "online" + MICROSOFT_FARM: "online" default: before_script: diff --git a/.gitlab-ci/test-source-dep.yml b/.gitlab-ci/test-source-dep.yml index fc033b433b0..e19bb216eec 100644 --- a/.gitlab-ci/test-source-dep.yml +++ b/.gitlab-ci/test-source-dep.yml @@ -587,6 +587,8 @@ # rules duplication manually .windows-build-rules: rules: + - if: '$MICROSOFT_FARM == "offline"' + when: never - *ignore_scheduled_pipelines - changes: *mesa_core_file_list @@ -621,6 +623,8 @@ .windows-test-rules: rules: + - if: '$MICROSOFT_FARM == "offline"' + when: never - *ignore_scheduled_pipelines - changes: *mesa_core_file_list
