From 9ccac97595f7388942120925d3b9399c6734f834 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Thu, 10 Apr 2014 16:02:11 +0200 Subject: [PATCH] Travis: Only run coveralls when using gcc. We don't have any gcov information in any other case. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2