aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-02-09 13:05:56 +0100
committerDavid Robillard <d@drobilla.net>2020-02-09 13:20:54 +0100
commit239c89eec8cf65b4cdc5531bf4b1bc9757dfc9b8 (patch)
tree4dd6356cc8abff535ef4821e615ff343d189c98e
parent0f8d60f3c0c4c71cc08cb07caa8565da31f50187 (diff)
downloadlv2-239c89eec8cf65b4cdc5531bf4b1bc9757dfc9b8.tar.xz
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.yml8
1 files changed, 4 insertions, 4 deletions
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: