add travis file

This commit is contained in:
Patrick Brosi 2018-06-12 16:17:08 +02:00
parent ea32f7c250
commit 95e60a0833

29
.travis.yml Normal file
View file

@ -0,0 +1,29 @@
language: generic
sudo: false
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc
- g++
- libboost-system-dev
- libboost-filesystem-dev
- libboost-geometry-dev
- cmake
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make -j
- make test
notifications:
email:
on_success: never
on_failure: never