]> git.saurik.com Git - apt.git/commitdiff
travis: Add coverage testing using codecov.io
authorJulian Andres Klode <jak@debian.org>
Sun, 11 Sep 2016 15:45:20 +0000 (17:45 +0200)
committerJulian Andres Klode <jak@debian.org>
Sun, 11 Sep 2016 15:45:20 +0000 (17:45 +0200)
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

.travis.yml

index a3d9d81e373644c1f6293bf0ccd1fabfdf2443da..af84b67dd57f4c78be06c733c007f1bf62251b3e 100644 (file)
@@ -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)