|
From: Kouhei S. <nul...@cl...> - 2014-01-23 15:42:52
|
Kouhei Sutou 2014-01-24 00:42:03 +0900 (Fri, 24 Jan 2014) New Revision: 41169968d0b845ab23827d323f7544d1d273f153 https://github.com/clear-code/cutter/commit/41169968d0b845ab23827d323f7544d1d273f153 Message: travis: enable Coveralls Modified files: .travis.yml Modified: .travis.yml (+4 -1) =================================================================== --- .travis.yml 2014-01-24 00:40:08 +0900 (bfe6d11) +++ .travis.yml 2014-01-24 00:42:03 +0900 (ebbdd0c) @@ -4,8 +4,11 @@ notifications: 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 --use-mirrors before_script: - ./autogen.sh - - ./configure + - ./configure --enable-coverage script: - test/run-test.sh +after_success: + - coveralls |