Add travis script for automated testing

This commit is contained in:
Jason Turner 2014-03-10 14:16:56 -06:00
parent ee35eb1512
commit 8b134c65d1

16
.travis.yml Normal file
View File

@ -0,0 +1,16 @@
language: cpp
compiler:
- gcc
- clang
script:
- mkdir build
- cd build
- cmake ../build
- make test
notifications:
recipients:
- jason@emptycrate.com
email:
on_success: always
on_failure: always