diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3a27ac3 --- /dev/null +++ b/.travis.yml @@ -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