Skip to content

Commit

Permalink
[travis] init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zouzias committed Jun 10, 2019
1 parent e702346 commit 6ef7efe
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
sudo: true
dist: xenial
language: cpp

addons:
apt:
sources:
- ubuntu-toolchain-r-test
update: true
packages:
- gcc
- g++
- cmake
- libeigen3-dev
- git
- wget
- python3-distutils
- python-dev

before_install:
- pip install --user cpp-coveralls

script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
- ctest

after_success:
- coveralls --root .. -E ".*external.*" -E ".*CMakeFiles.*" -E ".*test/.*.cpp.*"

notifications:
email: false

0 comments on commit 6ef7efe

Please sign in to comment.