|
From: Kouhei S. <nul...@cl...> - 2014-02-08 10:00:46
|
Kouhei Sutou 2014-02-08 19:00:28 +0900 (Sat, 08 Feb 2014) New Revision: a8942d0f155e01a0be1d2ab9fd81f14abe1cd9e0 https://github.com/clear-code/cutter/commit/a8942d0f155e01a0be1d2ab9fd81f14abe1cd9e0 Message: travis: use "test" Modified files: .travis.yml Modified: .travis.yml (+2 -2) =================================================================== --- .travis.yml 2014-02-08 18:58:04 +0900 (9dd3443) +++ .travis.yml 2014-02-08 19:00:28 +0900 (1a37f69) @@ -11,12 +11,12 @@ env: 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 - - [ "$ENABLE_COVERAGE" = "yes" ] && sudo pip install cpp-coveralls + - test "$ENABLE_COVERAGE" = "yes" && sudo pip install cpp-coveralls before_script: - ./autogen.sh - ./configure ${CONFIGURE_OPTIONS} script: - test/run-test.sh after_success: - - [ "$ENABLE_COVERAGE" = "yes" ] && coveralls --exclude test + - test "$ENABLE_COVERAGE" = "yes" && coveralls --exclude test |