[travis] Fail build if coveralls fails

This commit is contained in:
Behdad Esfahbod 2014-10-01 18:54:55 -04:00
parent a8aa20260d
commit 406a020e52
1 changed files with 2 additions and 13 deletions

View File

@ -8,7 +8,7 @@ env:
- CFLAGS="-Werror --coverage" - CFLAGS="-Werror --coverage"
- CXXFLAGS="-Werror --coverage" - CXXFLAGS="-Werror --coverage"
- LDFLAGS="--coverage" - LDFLAGS="--coverage"
before_install: install:
- sudo apt-get install pkg-config ragel gtk-doc-tools # for autogen.sh - sudo apt-get install pkg-config ragel gtk-doc-tools # for autogen.sh
- sudo apt-get install libfreetype6-dev # for font functions - sudo apt-get install libfreetype6-dev # for font functions
- sudo apt-get install libglib2.0-dev # for font functions / tests / utils - sudo apt-get install libglib2.0-dev # for font functions / tests / utils
@ -16,21 +16,10 @@ before_install:
- sudo apt-get install libicu-dev # for extra unicode functions - sudo apt-get install libicu-dev # for extra unicode functions
- sudo apt-get install libgraphite2-dev # for extra shapers - sudo apt-get install libgraphite2-dev # for extra shapers
- sudo pip install cpp-coveralls # for coveralls.io code coverage tracking - sudo pip install cpp-coveralls # for coveralls.io code coverage tracking
install:
- true
before_script:
- true
script: script:
- NOCONFIGURE=1 ./autogen.sh - NOCONFIGURE=1 ./autogen.sh
- ./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 && { rm -f src/.libs/NONE.gcov && touch src/NONE && test $CC == gcc && coveralls; }
after_success:
- 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:
- true
notifications: notifications:
irc: "irc.freenode.org#harfbuzz" irc: "irc.freenode.org#harfbuzz"
email: harfbuzz@lists.freedesktop.org email: harfbuzz@lists.freedesktop.org