From 4fbcb7d243335346cfb1cc3b16addd9078193339 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Feb 2020 15:09:29 +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 | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a2215c..d1d166d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -85,27 +85,23 @@ mingw64_rel: mac_dbg: <<: *build_definition script: python ./waf configure build -dsT --no-coverage - tags: - - macos + tags: [macos] mac_rel: <<: *build_definition script: python ./waf configure build -sT --no-coverage - tags: - - macos + tags: [macos] win_dbg: <<: *build_definition script: - python ./waf configure build -dT --no-coverage - tags: - - windows + tags: [windows,msvc,python] win_rel: <<: *build_definition script: python ./waf configure build -T --no-coverage - tags: - - windows + tags: [windows,msvc,python] pages: stage: deploy -- cgit v1.2.1