aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-02-09 11:34:33 +0100
committerDavid Robillard <d@drobilla.net>2020-02-09 11:35:42 +0100
commite76c7df6079b235e6d4e758732ded311bd55883c (patch)
tree80a2b8c0da5173efa5e30d07c8e5532285957f97 /.gitlab-ci.yml
parent2436c4cb8c3e88806a24af7dfa1b55370ec06b38 (diff)
downloadserd-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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
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: