diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 17:26:04 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-13 17:27:07 +0200 |
commit | f8b396210aa3247a64c890a69a7d059513797607 (patch) | |
tree | bcb3ff8152dd92961be412ffaa17ea1834b60fbb | |
parent | 470e7ce6fc111f27e964aa800cc06d4f7bfcf118 (diff) | |
download | zix-f8b396210aa3247a64c890a69a7d059513797607.tar.gz zix-f8b396210aa3247a64c890a69a7d059513797607.tar.bz2 zix-f8b396210aa3247a64c890a69a7d059513797607.zip |
Fix Gitlab CI runner tags
-rw-r--r-- | .gitlab-ci.yml | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f07f30..fd080fd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -152,54 +152,46 @@ mingw64_rel: mac_dbg: <<: *build_definition script: python ./waf configure build -dST --werror --no-coverage - tags: - - macos + tags: [macos] test:mac_dbg: <<: *test_definition script: python ./waf test needs: ["mac_dbg"] - tags: - - macos + tags: [macos] mac_rel: <<: *build_definition script: python ./waf configure build -ST --werror --no-coverage - tags: - - macos + tags: [macos] test:mac_rel: <<: *test_definition script: python ./waf test needs: ["mac_rel"] - tags: - - macos + tags: [macos] win_dbg: <<: *build_definition script: python ./waf configure build -dST --werror --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 -ST --werror --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] |