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 - linux
- osx - osx
script: make && make check script: make CC=$CC && make check
matrix: matrix:
include: include:
- os: linux - os: linux
compiler: i586-mingw32msvc-gcc compiler: i586-mingw32msvc-gcc
script: make script: make CC=$CC
- os: linux - os: linux
compiler: '"clang -fsanitize=address"' compiler: '"clang -fsanitize=address"'
script: make && make check script: make CC=$CC && make check
- os: linux - os: linux
compiler: '"clang -fsanitize=memory"' compiler: '"clang -fsanitize=memory"'
script: make && make check script: make CC=$CC && make check