diff options
-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] |