From 1586648a02fc0bf63a645bab966312c5b35e491b Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Thu, 11 Jun 2015 15:15:25 -0600 Subject: [PATCH] Pass name of gcov binary to codecov script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 58fd87e1..00b2a0a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ script: - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then make -j2 ; fi - make test # - if [ ${COVERAGE} = 1 ]; then coveralls -e "unittests/catch.hpp" -E ".*\.cpp" --gcov $GCOV ; fi - - if [ ${COVERAGE} = 1 ]; then bash <(curl -s https://codecov.io/bash | sed "s/# find all the reports/find . -name \"*.gcno\" | xargs gcov -s \`cd .. \&\& pwd\` / ") ; fi + - if [ ${COVERAGE} = 1 ]; then bash <(curl -s https://codecov.io/bash | sed "s/# find all the reports/find . -name \"*.gcno\" | xargs \$GCOV -s \`cd .. \&\& pwd\` / ") ; fi after_script: - if [ ${CPPCHECK} = 1 ]; then contrib/codeanalysis/runcppcheck.sh ; fi