From 239c89eec8cf65b4cdc5531bf4b1bc9757dfc9b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 9 Feb 2020 13:05:56 +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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 580665c..841ec7d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -125,25 +125,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 dependencies: [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 dependencies: [win_rel] - tags: [windows] + tags: [windows,msvc,python] pages: -- cgit v1.2.1