Build and test on travis

This commit is contained in:
hvellyr 2016-05-29 23:40:14 +02:00 committed by gck
parent 546942e389
commit d76d29b4fd

38
.travis.yml Normal file
View File

@ -0,0 +1,38 @@
language: cpp
sudo: false
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- kubuntu-backports
- ubuntu-toolchain-r-test
packages:
- cmake
- gcc-4.9
- g++-4.9
env: COMPILER=g++-4.9
- compiler: clang
addons:
apt:
sources:
- kubuntu-backports
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- cmake
- clang-3.7
env: COMPILER=clang++-3.7
branches:
only:
- master
before_script:
- export CXX=$COMPILER
script:
- mkdir build && cd build
- cmake .. && make && ctest -V