From a8aa20260dbd9af9cbcc7d545fa8b41b07aae276 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 1 Oct 2014 18:48:40 -0400 Subject: [PATCH] [travis] Only run coveralls under gcc --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index be4522a..548f26e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,9 +25,8 @@ script: - ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 - make && make check after_success: - - rm -f src/.libs/NONE.gcov # coveralls chokes on this - - touch src/NONE # see if this makes coveralls happy - - coveralls + - rm -f src/.libs/NONE.gcov; touch src/NONE # coveralls needs some help + - if test $CC == gcc; then coveralls; fi # currently only gcc works after_failure: - true after_script: -- 2.7.4