aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-14 12:02:12 +0200
committerDavid Robillard <d@drobilla.net>2019-04-14 15:10:12 +0200
commit8ca462ad3633f49801abf13a093a66ac58f11f44 (patch)
tree71020ac30ab589111a80abe43d9662fe081e0305
parent4eeee6f1e706112f789687b2f46d713ee3e26168 (diff)
downloadserd-8ca462ad3633f49801abf13a093a66ac58f11f44.tar.gz
serd-8ca462ad3633f49801abf13a093a66ac58f11f44.tar.bz2
serd-8ca462ad3633f49801abf13a093a66ac58f11f44.zip
Enable test coverage on CI
-rw-r--r--.gitlab-ci.yml28
1 files changed, 18 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0495b1fb..d29dec0a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@ arm-linux-gnueabihf:
CC: "arm-linux-gnueabihf-gcc"
CXX: "arm-linux-gnueabihf-g++"
script:
- - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-arm
+ - python ./waf configure build test -dsT --wrapper=qemu-arm
aarch64-linux-gnu:
image: drobilla/debian-stretch
@@ -12,39 +12,47 @@ aarch64-linux-gnu:
CC: "aarch64-linux-gnu-gcc"
CXX: "aarch64-linux-gnu-g++"
script:
- - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-aarch64
+ - python ./waf configure build test -dsT --wrapper=qemu-aarch64
lin_dbg:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -dsT --no-coverage
+ - python ./waf configure build test -dsT
lin_rel:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -sT --no-coverage
+ - python ./waf configure build test -sT
lin_dbg_st:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -dsT --no-coverage --static-progs --no-shared
+ - python ./waf configure build test -dsT --static-progs --no-shared
lin_rel_st:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -sT --no-coverage --static-progs --no-shared
+ - python ./waf configure build test -sT --static-progs --no-shared
lin_dbg_no_posix:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -dsT --no-posix --no-coverage
+ - python ./waf configure build test -dsT --no-posix
lin_rel_no_posix:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -sT --no-posix --no-coverage
+ - python ./waf configure build test -sT --no-posix
lin_dbg_st_no_posix:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -dsT --no-posix --no-coverage --static-progs --no-shared
+ - python ./waf configure build test -dsT --no-posix --static-progs --no-shared
lin_rel_st_no_posix:
+ image: drobilla/debian-stretch
script:
- - python ./waf configure build test -sT --no-posix --no-coverage --static-progs --no-shared
+ - python ./waf configure build test -sT --no-posix --static-progs --no-shared
mac_dbg:
script: