aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-02-02 15:09:29 +0100
committerDavid Robillard <d@drobilla.net>2020-02-02 15:09:29 +0100
commit4fbcb7d243335346cfb1cc3b16addd9078193339 (patch)
tree7b4370bc827c27377ed68326ec44141b74c3f2df
parentc1c69abf7bc964b6e2c1c5d5c1ba7f1542dcecc4 (diff)
downloadpugl-4fbcb7d243335346cfb1cc3b16addd9078193339.tar.gz
pugl-4fbcb7d243335346cfb1cc3b16addd9078193339.tar.bz2
pugl-4fbcb7d243335346cfb1cc3b16addd9078193339.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.yml12
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