Browse Source

Add Travis configuration

zrythm_meson
David Robillard 6 years ago
parent
commit
7d4055b6b6
  1. 32
      .travis.yml

32
.travis.yml

@ -0,0 +1,32 @@ @@ -0,0 +1,32 @@
language: c
compiler:
- clang
- gcc
os:
- linux
- osx
env:
- FLAGS=""
- FLAGS="--debug"
- FLAGS=" --no-posix"
- FLAGS="--debug --no-posix"
- FLAGS=" --static --static-progs --no-shared"
- FLAGS="--debug --static --static-progs --no-shared"
- FLAGS=" --no-posix --static --static-progs --no-shared"
- FLAGS="--debug --no-posix --static --static-progs --no-shared"
matrix:
exclude:
- os: osx
env: FLAGS=" --static --static-progs --no-shared"
- os: osx
env: FLAGS="--debug --static --static-progs --no-shared"
- os: osx
env: FLAGS=" --no-posix --static --static-progs --no-shared"
- os: osx
env: FLAGS="--debug --no-posix --static --static-progs --no-shared"
- os: osx
compiler: gcc
script:
- ./waf configure --test --no-coverage --strict $FLAGS
- ./waf build
- ./waf test
Loading…
Cancel
Save