diff options
author | David Robillard <d@drobilla.net> | 2019-04-14 11:58:21 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-14 15:10:12 +0200 |
commit | 4eeee6f1e706112f789687b2f46d713ee3e26168 (patch) | |
tree | 0a44a94da419eff70602ccdaf9f08d956a488dee /.gitlab-ci.yml | |
parent | 4a7098420ad64bbd0c0073abd34cdd3d2c20357b (diff) | |
download | serd-4eeee6f1e706112f789687b2f46d713ee3e26168.tar.gz serd-4eeee6f1e706112f789687b2f46d713ee3e26168.tar.bz2 serd-4eeee6f1e706112f789687b2f46d713ee3e26168.zip |
Clean up CI waf arguments
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9417256d..0495b1fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,27 +24,27 @@ lin_rel: lin_dbg_st: script: - - python ./waf configure build test -dsT --no-coverage --static --static-progs --no-shared + - python ./waf configure build test -dsT --no-coverage --static-progs --no-shared lin_rel_st: script: - - python ./waf configure build test -sT --no-coverage --static --static-progs --no-shared + - python ./waf configure build test -sT --no-coverage --static-progs --no-shared lin_dbg_no_posix: script: - - python ./waf configure build test --no-posix -dsT --no-coverage + - python ./waf configure build test -dsT --no-posix --no-coverage lin_rel_no_posix: script: - - python ./waf configure build test --no-posix -sT --no-coverage + - python ./waf configure build test -sT --no-posix --no-coverage lin_dbg_st_no_posix: script: - - python ./waf configure build test --no-posix -dsT --no-coverage --static --static-progs --no-shared + - python ./waf configure build test -dsT --no-posix --no-coverage --static-progs --no-shared lin_rel_st_no_posix: script: - - python ./waf configure build test --no-posix -sT --no-coverage --static --static-progs --no-shared + - python ./waf configure build test -sT --no-posix --no-coverage --static-progs --no-shared mac_dbg: script: @@ -60,13 +60,13 @@ mac_rel: mac_dbg_no_posix: script: - - python ./waf configure build test --no-posix -dsT --no-coverage + - python ./waf configure build test -dsT --no-posix --no-coverage tags: - macos mac_rel_no_posix: script: - - python ./waf configure build test --no-posix -sT --no-coverage + - python ./waf configure build test -sT --no-posix --no-coverage tags: - macos |