Expand build matrix on Travis CI

This commit is contained in:
Marc André Tanner 2018-03-19 19:03:50 +01:00
parent 5eb7317971
commit 35b3f61015
1 changed files with 21 additions and 7 deletions

View File

@ -1,8 +1,22 @@
language: c language: c
compiler: matrix:
- gcc include:
- clang - os: linux
env: compiler: gcc
- DEBUG= env: TARGET=
- DEBUG=debug - os: linux
script: make $DEBUG compiler: clang
env: TARGET=
- os: linux
compiler: gcc
env: TARGET=debug
- os: linux
compiler: clang
env: TARGET=debug
- os: osx
compiler: clang
env: TARGET=
- os: osx
compiler: clang
env: TARGET=debug
script: ./configure && make $TARGET