diff options
-rw-r--r-- | .gitlab-ci.yml | 12 |
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 |