From 239a798bfe5c05f30aff8f9d858d2cb74115c662 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Mon, 19 Mar 2018 16:05:14 -0700 Subject: [PATCH] Try codecov for code coverage --- .travis.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ebc8904..f27b0b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,6 +52,13 @@ matrix: - os: linux compiler: clang env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="--coverage" CFLAGS="--coverage" LDFLAGS="--coverage" + after_script: + - mason install llvm-cov 3.9.1 + - mason link llvm-cov 3.9.1 + - which llvm-cov + - curl -S -f https://codecov.io/bash -o codecov + - chmod +x codecov + - ./codecov -x "llvm-cov gcov" -Z addons: apt: sources: ['ubuntu-toolchain-r-test' ] @@ -101,8 +108,3 @@ script: BUILDTYPE=${BUILDTYPE} make fewer-tests; else BUILDTYPE=${BUILDTYPE} make test geobuf-test; fi - - if [ -n "${COVERAGE}" ]; then - /usr/bin/llvm-cov-3.5 -lp *.o; - pip install --user cpp-coveralls; - ~/.local/bin/coveralls --no-gcov -i ./ --exclude catch --exclude jsonpull --exclude mapbox --exclude milo --exclude protozero ; - fi