[travis] Only run coveralls under gcc

This commit is contained in:
Behdad Esfahbod 2014-10-01 18:48:40 -04:00
parent 5de0407337
commit a8aa20260d
1 changed files with 2 additions and 3 deletions

View File

@ -25,9 +25,8 @@ script:
- ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 - ./configure --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2
- make && make check - make && make check
after_success: after_success:
- rm -f src/.libs/NONE.gcov # coveralls chokes on this - rm -f src/.libs/NONE.gcov; touch src/NONE # coveralls needs some help
- touch src/NONE # see if this makes coveralls happy - if test $CC == gcc; then coveralls; fi # currently only gcc works
- coveralls
after_failure: after_failure:
- true - true
after_script: after_script: