Skip to content

Commit

Permalink
Add coverage and CMake jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Jun 24, 2018
1 parent 8614a7b commit 7dc225c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,34 @@ matrix:
- CXX=clang++
- CXXSTD=-std=c++17

- compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-7']
env:
- CXX=g++-7
- CXXFLAGS="-O0 --coverage"
before_script:
- pip install --user cpp-coveralls
after_success:
- coveralls --gcov gcov-7 --gcov-options '\-lp' --exclude src

- compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6']
env:
- CXX=g++-6
script:
- $CXX --version
- mkdir build
- cd build
- cmake ..
- cmake --build .
- cmake --build . --target test

script:
- $CXX --version
- make -j3 build/src/test/seq/tester
Expand Down

0 comments on commit 7dc225c

Please sign in to comment.