aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-03 13:52:18 -0500
committerDavid Robillard <d@drobilla.net>2018-07-21 13:35:27 +0200
commit687bbede636ae1eb8edd0de3f2d4eeedbe3e5451 (patch)
tree61954bb30cd2bc046b4dc71bc69ca2a8705af208
parenta1d9e124ecbc42f411e1807091f95aaa94ef1198 (diff)
downloadserd-687bbede636ae1eb8edd0de3f2d4eeedbe3e5451.tar.gz
serd-687bbede636ae1eb8edd0de3f2d4eeedbe3e5451.tar.bz2
serd-687bbede636ae1eb8edd0de3f2d4eeedbe3e5451.zip
Add Gitlab CI configuration
-rw-r--r--.gitlab-ci.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..6afe6768
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,61 @@
+dbg_shared:
+ script:
+ - python ./waf configure build test --debug --strict --test --no-coverage
+
+rel_shared:
+ script:
+ - python ./waf configure build test --strict --test --no-coverage
+
+dbg_static:
+ script:
+ - python ./waf configure build test --debug --strict --test --no-coverage --static --static-progs --no-shared
+
+rel_static:
+ script:
+ - python ./waf configure build test --strict --test --no-coverage --static --static-progs --no-shared
+
+dbg_shared_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --debug --strict --test --no-coverage
+
+rel_shared_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --strict --test --no-coverage
+
+dbg_static_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --debug --strict --test --no-coverage --static --static-progs --no-shared
+
+rel_static_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --strict --test --no-coverage --static --static-progs --no-shared
+
+mac_dbg:
+ script:
+ - python ./waf configure build test --debug --strict --test --no-coverage
+ tags:
+ - macos
+
+mac_rel:
+ script:
+ - python ./waf configure build test --strict --test --no-coverage
+ tags:
+ - macos
+
+mac_dbg_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --debug --strict --test --no-coverage
+ tags:
+ - macos
+
+mac_rel_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --strict --test --no-coverage
+ tags:
+ - macos
+
+win_r:
+ script:
+ - python ./waf configure build test --test --no-coverage
+ tags:
+ - windows