Add initial Travis config.

Force to use Trusty distr.
Enable tests build.
Enable tests run with CTest.
This commit is contained in:
dreamer.dead 2016-08-01 17:28:40 +03:00
parent a5a1b28767
commit 5871f3a35d

19
.travis.yml Normal file
View file

@ -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