diff options
author | David Robillard <d@drobilla.net> | 2020-02-09 11:34:33 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-02-09 11:35:42 +0100 |
commit | e76c7df6079b235e6d4e758732ded311bd55883c (patch) | |
tree | 80a2b8c0da5173efa5e30d07c8e5532285957f97 | |
parent | 2436c4cb8c3e88806a24af7dfa1b55370ec06b38 (diff) | |
download | serd-e76c7df6079b235e6d4e758732ded311bd55883c.tar.gz serd-e76c7df6079b235e6d4e758732ded311bd55883c.tar.bz2 serd-e76c7df6079b235e6d4e758732ded311bd55883c.zip |
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.
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 4 insertions, 5 deletions
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: |