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
compiler:
- gcc
- clang
env:
- DEBUG=
- DEBUG=debug
script: make $DEBUG
matrix:
include:
- os: linux
compiler: gcc
env: TARGET=
- os: linux
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