From e76c7df6079b235e6d4e758732ded311bd55883c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 9 Feb 2020 11:34:33 +0100 Subject: Add tags to Windows builds to exclude Gitlab shared runners Gitlab now has shared Windows runners, which is cool, but unfortunately they don't have Python, so they are useless here and will cause failed builds if they pick up the job. --- .gitlab-ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f181a57..9727e2b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -176,26 +176,25 @@ test:mac_rel: win_dbg: <<: *build_definition script: python ./waf configure build -dT --no-coverage - tags: [windows] + tags: [windows,msvc,python] test:win_dbg: <<: *test_definition script: python ./waf test needs: ["win_dbg"] - tags: [windows] + tags: [windows,msvc,python] win_rel: <<: *build_definition script: python ./waf configure build -T --no-coverage - tags: - - windows + tags: [windows,msvc,python] test:win_rel: <<: *test_definition script: python ./waf test needs: ["win_rel"] - tags: [windows] + tags: [windows,msvc,python] pages: -- cgit v1.2.1