From d9a2077a0ee99ecdab1c0989e2f99ee6a2021d86 Mon Sep 17 00:00:00 2001 From: Niels Date: Fri, 24 Jul 2015 22:41:12 +0200 Subject: [PATCH] only calculate coverage for GCC 4.9 --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 629c29c6..b136dfe3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,8 +36,8 @@ script: - valgrind --error-exitcode=1 --leak-check=full ./json_unit after_success: - - make clean - - touch src/json.hpp - - make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER - - ./json_unit "*" - - coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' + - if [ "$COMPILER" = "g++-4.9" ]; make clean + - if [ "$COMPILER" = "g++-4.9" ]; touch src/json.hpp + - if [ "$COMPILER" = "g++-4.9" ]; make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER + - if [ "$COMPILER" = "g++-4.9" ]; ./json_unit "*" + - if [ "$COMPILER" = "g++-4.9" ]; coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'