Add travis ci settings file

This commit is contained in:
Erik Ekman 2014-04-22 20:46:48 +02:00
parent 27f2504cda
commit 17de589e7d

15
.travis.yml Normal file
View File

@ -0,0 +1,15 @@
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- if [ `uname` == "Linux" ]; then sudo apt-get update -qq && sudo apt-get install -qq check zlib1g-dev; fi
- if [ `uname` == "Darwin" ]; then brew update && brew install check; fi
script: make && make test
install: true