From 8b2c3e5ca003a9cdf22a71f50866f9c25b3036c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 10 Jan 2019 22:38:32 +0100 Subject: Add Gitlab CI configuration --- .gitlab-ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitlab-ci.yml 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 -- cgit v1.2.1