forked from github/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
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue