Add travis-ci control file

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

26
.travis.yml Normal file

@ -0,0 +1,26 @@
language: c
sudo: false
compiler:
- gcc
- clang
os:
- linux
- osx
script: make && make check
matrix:
include:
- os: linux
compiler: i586-mingw32msvc-gcc
script: make
- os: linux
compiler: '"clang -fsanitize=address"'
script: make && make check
- os: linux
compiler: '"clang -fsanitize=memory"'
script: make && make check