From f0b75701a8bae0f32c12c87c6a1bb8579f28ce9f Mon Sep 17 00:00:00 2001 From: Steffen Schuemann Date: Sun, 19 May 2019 13:04:36 +0200 Subject: [PATCH] Work on better CI integration. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f0bccd..518bd65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,7 @@ install: brew upgrade cmake fi - | - if [ "${GHC_COVERALLS}" = "1" ]; then + if [ "${GHC_COVERAGE}" = "1" ]; then pip install --user cpp-coveralls fi - $CC --version @@ -70,5 +70,8 @@ script: - ctest -C ${CONFIG} -E Windows after_success: - - coveralls --root . -E ".*CMakeFiles.*" + - | + if [ "${GHC_COVERAGE}" = "1" ]; then + coveralls --root . -E ".*CMakeFiles.*" + fi