summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-09-11 17:45:20 +0200
committerJulian Andres Klode <jak@debian.org>2016-09-11 17:45:20 +0200
commitacddd9188c21c2e13aff5cea3a82f2d01aff788b (patch)
tree141f41e59faa2d07a8c427761447ab930703b74a /.travis.yml
parentbccb344412a0e97afdf0aaaf41a31124c84f6eaa (diff)
travis: Add coverage testing using codecov.io
This allows fully automated code coverage testing, which is basically awesome. To allow the methods and solvers and stuff which run as _apt to write to our build directory, we need to adjust the permissions a bit, but otherwise it's OK. Gbp-Dch: ignore
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index a3d9d81e3..af84b67dd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,11 +14,17 @@ install:
- sudo apt-get -qq -y -t xenial install cmake ninja-build
- sudo ./prepare-release travis-ci
before_script:
- - ( mkdir build && cd build && cmake -G Ninja .. )
+ - ( mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Coverage -G Ninja .. )
- ninja -C build
script:
- CTEST_OUTPUT_ON_FAILURE=1 ninja -C build test
- DESTDIR=$PWD/rootdir chronic ninja -C build install
- ./test/integration/run-tests -qq
- sudo adduser --force-badname --system --home /nonexistent --no-create-home --quiet _apt || true
+ - sudo chmod go+x /home/travis
+ - sudo chmod -R go+rwX /home/travis/build
- sudo ./test/integration/run-tests -qq
+after_success:
+ - cd build
+ - gcov -r $(find -name '*.gcno')
+ - bash <(curl -s https://codecov.io/bash)