diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..9417256d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,83 @@ +arm-linux-gnueabihf: + image: drobilla/debian-stretch + variables: + CC: "arm-linux-gnueabihf-gcc" + CXX: "arm-linux-gnueabihf-g++" + script: + - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-arm + +aarch64-linux-gnu: + image: drobilla/debian-stretch + variables: + CC: "aarch64-linux-gnu-gcc" + CXX: "aarch64-linux-gnu-g++" + script: + - python ./waf configure build test -dsT --no-coverage --wrapper=qemu-aarch64 + +lin_dbg: + script: + - python ./waf configure build test -dsT --no-coverage + +lin_rel: + script: + - python ./waf configure build test -sT --no-coverage + +lin_dbg_st: + script: + - python ./waf configure build test -dsT --no-coverage --static --static-progs --no-shared + +lin_rel_st: + script: + - 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 -dsT --no-coverage + +lin_rel_no_posix: + script: + - python ./waf configure build test --no-posix -sT --no-coverage + +lin_dbg_st_no_posix: + script: + - 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 -sT --no-coverage --static --static-progs --no-shared + +mac_dbg: + script: + - python ./waf configure build test -dsT --no-coverage + tags: + - macos + +mac_rel: + script: + - python ./waf configure build test -sT --no-coverage + tags: + - macos + +mac_dbg_no_posix: + script: + - python ./waf configure build test --no-posix -dsT --no-coverage + tags: + - macos + +mac_rel_no_posix: + script: + - python ./waf configure build test --no-posix -sT --no-coverage + tags: + - macos + +win_dbg: + script: + - python ./waf configure build test -dT --no-coverage + tags: + - windows + +win_rel: + script: + - python ./waf configure build test -T --no-coverage + tags: + - windows |