aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-03 13:52:18 -0500
committerDavid Robillard <d@drobilla.net>2018-07-22 17:48:53 +0200
commit1a62e13386c3caf7125c6290c923a828bf4406bf (patch)
treeaa68da5545d2e41809e35a856adf695c3006f619 /.gitlab-ci.yml
parentf8722d2a0916d2cd4048e7d74e9c7d7c0a8c3d0e (diff)
downloadserd-1a62e13386c3caf7125c6290c923a828bf4406bf.tar.gz
serd-1a62e13386c3caf7125c6290c923a828bf4406bf.tar.bz2
serd-1a62e13386c3caf7125c6290c923a828bf4406bf.zip
Add Gitlab CI configuration
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml68
1 files changed, 68 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..94cc436c
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,68 @@
+lin_dbg:
+ script:
+ - python ./waf configure build test --debug --strict --test --no-coverage
+
+lin_rel:
+ script:
+ - python ./waf configure build test --strict --test --no-coverage
+
+lin_dbg_st:
+ script:
+ - python ./waf configure build test --debug --strict --test --no-coverage --static --static-progs --no-shared
+
+lin_rel_st:
+ script:
+ - python ./waf configure build test --strict --test --no-coverage --static --static-progs --no-shared
+
+lin_dbg_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --debug --strict --test --no-coverage
+
+lin_rel_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --strict --test --no-coverage
+
+lin_dbg_st_no_posix:
+ script:
+ - python ./waf configure build test --no-posix --debug --strict --test --no-coverage --static --static-progs --no-shared
+
+lin_rel_st_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_dbg:
+ script:
+ - python ./waf configure build test --debug --test --no-coverage
+ tags:
+ - windows
+
+win_rel:
+ script:
+ - python ./waf configure build test --test --no-coverage
+ tags:
+ - windows
+