summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2014-10-01 18:48:40 -0400
committerBehdad Esfahbod <behdad@behdad.org>2014-10-01 18:48:40 -0400
commita8aa20260dbd9af9cbcc7d545fa8b41b07aae276 (patch)
tree8fc3a9db1c773f6cd0e2a39f11ef4b13eb04aec0
parent5de0407337d630117e424b7c715b7cbd432f4ef9 (diff)
[travis] Only run coveralls under gcc
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index be4522ae..548f26e8 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: