diff options
Diffstat (limited to '.gitlab-ci.yml')
-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 |