Use correct compiler in travis-ci

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
This commit is contained in:
Claudio Matsuoka 2015-10-05 22:47:38 -03:00
parent 2c3ffa7b24
commit d20dfa1266

View File

@ -10,17 +10,17 @@ os:
- linux
- osx
script: make && make check
script: make CC=$CC && make check
matrix:
include:
- os: linux
compiler: i586-mingw32msvc-gcc
script: make
script: make CC=$CC
- os: linux
compiler: '"clang -fsanitize=address"'
script: make && make check
script: make CC=$CC && make check
- os: linux
compiler: '"clang -fsanitize=memory"'
script: make && make check
script: make CC=$CC && make check