Browse Source

Add Gitlab CI configuration

zrythm_meson
David Robillard 4 years ago
parent
commit
8b2c3e5ca0
  1. 31
      .gitlab-ci.yml

31
.gitlab-ci.yml

@ -0,0 +1,31 @@ @@ -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
Loading…
Cancel
Save