From: Sebastian Harl Date: Thu, 10 Apr 2014 14:02:11 +0000 (+0200) Subject: Travis: Only run coveralls when using gcc. X-Git-Tag: sysdb-0.1.0~132^2~7 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=9ccac97595f7388942120925d3b9399c6734f834 Travis: Only run coveralls when using gcc. We don't have any gcov information in any other case. --- diff --git a/.travis.yml b/.travis.yml index 95f4ba5..87badb6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ install: - pip show cpp-coveralls script: ./t/cibuild.sh after_success: - - coveralls --build-root src --exclude t + - test "${CC}x" != "gccx" || coveralls --build-root src --exclude t branches: only: - master