diff options
author | David Robillard <d@drobilla.net> | 2019-01-10 22:38:32 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-10 23:30:56 +0100 |
commit | 8b2c3e5ca003a9cdf22a71f50866f9c25b3036c5 (patch) | |
tree | f999c443a6be7daa7101c81d42bc1e80d7ccd7e9 | |
parent | c8875974909ae27a74e75f752ce11cd296e2438a (diff) | |
download | lv2-8b2c3e5ca003a9cdf22a71f50866f9c25b3036c5.tar.xz |
Add Gitlab CI configuration
-rw-r--r-- | .gitlab-ci.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d877353 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,31 @@ +lin_dbg: + script: + - python ./waf -dsT --no-coverage configure build test + +lin_rel: + script: + - python ./waf -sT --no-coverage configure build test + +mac_dbg: + script: + - python ./waf -dsT --no-coverage configure build test + tags: + - macos + +mac_rel: + script: + - python ./waf -sT --no-coverage configure build test + tags: + - macos + +win_dbg: + script: + - python ./waf -dsT --no-coverage configure build test + tags: + - windows + +win_rel: + script: + - python ./waf -sT --no-coverage configure build test + tags: + - windows
\ No newline at end of file |