diff options
author | David Robillard <d@drobilla.net> | 2020-02-02 15:09:29 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-02-02 15:09:29 +0100 |
commit | 4fbcb7d243335346cfb1cc3b16addd9078193339 (patch) | |
tree | 7b4370bc827c27377ed68326ec44141b74c3f2df | |
parent | c1c69abf7bc964b6e2c1c5d5c1ba7f1542dcecc4 (diff) |
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 | 12 |
1 files 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 |