|
From: Kouhei S. <nul...@cl...> - 2014-02-08 09:33:53
|
Kouhei Sutou 2014-02-08 18:33:34 +0900 (Sat, 08 Feb 2014) New Revision: a521f3976effa8362e7b77b334930f699eeb8efa https://github.com/clear-code/cutter/commit/a521f3976effa8362e7b77b334930f699eeb8efa Message: travis: add no coverage build Modified files: .travis.yml Modified: .travis.yml (+6 -3) =================================================================== --- .travis.yml 2014-02-08 18:33:12 +0900 (084c789) +++ .travis.yml 2014-02-08 18:33:34 +0900 (9dd3443) @@ -5,15 +5,18 @@ language: cpp compiler: - gcc - clang +env: + - ENABLE_COVERAGE=no + - ENABLE_COVERAGE=yes CONFIGURE_OPTIONS=--enable-coverage install: - sudo apt-get update -qq -y - sudo apt-get install -qq -y autotools-dev intltool gtk-doc-tools libgtk2.0-dev libgoffice-0.8-dev libgstreamer0.10-dev libsoup2.4-dev - - sudo pip install cpp-coveralls + - [ "$ENABLE_COVERAGE" = "yes" ] && sudo pip install cpp-coveralls before_script: - ./autogen.sh - - ./configure --enable-coverage + - ./configure ${CONFIGURE_OPTIONS} script: - test/run-test.sh after_success: - - coveralls --exclude test + - [ "$ENABLE_COVERAGE" = "yes" ] && coveralls --exclude test |