mirror of https://github.com/martanne/abduco
Expand build matrix on Travis CI
This commit is contained in:
parent
5eb7317971
commit
35b3f61015
28
.travis.yml
28
.travis.yml
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue