figlet/.travis.yml
Claudio Matsuoka f86e9f0d20 Fix clang-sanitizer compiler settings for travis-ci
Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
2015-10-05 22:50:04 -03:00

27 lines
421 B
YAML

language: c
sudo: false
compiler:
- gcc
- clang
os:
- linux
- osx
script: make CC="$CC" && make check
matrix:
include:
- os: linux
compiler: i586-mingw32msvc-gcc
script: make CC="$CC"
- os: linux
compiler: '"clang -fsanitize=address"'
script: make CC="$CC" && make check
- os: linux
compiler: '"clang -fsanitize=memory"'
script: make CC="$CC" && make check