From 5871f3a35d1825db3a215e9e7c5b4ca42babfd8f Mon Sep 17 00:00:00 2001 From: "dreamer.dead" Date: Mon, 1 Aug 2016 17:28:40 +0300 Subject: [PATCH] Add initial Travis config. Force to use Trusty distr. Enable tests build. Enable tests run with CTest. --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f605995 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +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