Enable Travis CI for Linux and OSX builds (#160)

This commit is contained in:
Dreamer 2016-08-01 20:01:18 +04:00 committed by Andreas Schuh
parent a5a1b28767
commit 4667f41317

16
.travis.yml Normal file
View file

@ -0,0 +1,16 @@
os:
- linux
- osx
# Ubuntu 14.04 Trusty support, to get newer cmake and compilers.
sudo: required
dist: trusty
language: cpp
script:
- mkdir out && cd out && cmake -DGFLAGS_BUILD_TESTING=True .. && make && ctest
compiler:
- clang
- gcc