aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-13 23:06:56 +0200
committerDavid Robillard <d@drobilla.net>2019-04-13 23:06:56 +0200
commitf682d691785338e8d812b42623f5c726b304f04e (patch)
tree7b3ef3ac87e8a54afdfe0b6a82cc99f3e2dfa185 /.gitlab-ci.yml
parent464df57aeb6edd8512902cf4b5e4678ff562dc0b (diff)
downloadserd-f682d691785338e8d812b42623f5c726b304f04e.tar.gz
serd-f682d691785338e8d812b42623f5c726b304f04e.tar.bz2
serd-f682d691785338e8d812b42623f5c726b304f04e.zip
Use short options in CI configuration
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 94cc436c..6f4c76a2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,68 +1,68 @@
lin_dbg:
script:
- - python ./waf configure build test --debug --strict --test --no-coverage
+ - python ./waf configure build test -dsT --no-coverage
lin_rel:
script:
- - python ./waf configure build test --strict --test --no-coverage
+ - python ./waf configure build test -sT --no-coverage
lin_dbg_st:
script:
- - python ./waf configure build test --debug --strict --test --no-coverage --static --static-progs --no-shared
+ - python ./waf configure build test -dsT --no-coverage --static --static-progs --no-shared
lin_rel_st:
script:
- - python ./waf configure build test --strict --test --no-coverage --static --static-progs --no-shared
+ - python ./waf configure build test -sT --no-coverage --static --static-progs --no-shared
lin_dbg_no_posix:
script:
- - python ./waf configure build test --no-posix --debug --strict --test --no-coverage
+ - python ./waf configure build test --no-posix -dsT --no-coverage
lin_rel_no_posix:
script:
- - python ./waf configure build test --no-posix --strict --test --no-coverage
+ - python ./waf configure build test --no-posix -sT --no-coverage
lin_dbg_st_no_posix:
script:
- - python ./waf configure build test --no-posix --debug --strict --test --no-coverage --static --static-progs --no-shared
+ - python ./waf configure build test --no-posix -dsT --no-coverage --static --static-progs --no-shared
lin_rel_st_no_posix:
script:
- - python ./waf configure build test --no-posix --strict --test --no-coverage --static --static-progs --no-shared
+ - python ./waf configure build test --no-posix -sT --no-coverage --static --static-progs --no-shared
mac_dbg:
script:
- - python ./waf configure build test --debug --strict --test --no-coverage
+ - python ./waf configure build test -dsT --no-coverage
tags:
- macos
mac_rel:
script:
- - python ./waf configure build test --strict --test --no-coverage
+ - python ./waf configure build test -sT --no-coverage
tags:
- macos
mac_dbg_no_posix:
script:
- - python ./waf configure build test --no-posix --debug --strict --test --no-coverage
+ - python ./waf configure build test --no-posix -dsT --no-coverage
tags:
- macos
mac_rel_no_posix:
script:
- - python ./waf configure build test --no-posix --strict --test --no-coverage
+ - python ./waf configure build test --no-posix -sT --no-coverage
tags:
- macos
win_dbg:
script:
- - python ./waf configure build test --debug --test --no-coverage
+ - python ./waf configure build test -dT --no-coverage
tags:
- windows
win_rel:
script:
- - python ./waf configure build test --test --no-coverage
+ - python ./waf configure build test -T --no-coverage
tags:
- windows