[travis] Only run coveralls under gcc
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 1 Oct 2014 22:48:40 +0000 (18:48 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 1 Oct 2014 22:48:40 +0000 (18:48 -0400)
.travis.yml

index be4522a..548f26e 100644 (file)
@@ -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: