aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authoripkn <ipknhama@gmail.com>2015-09-04 15:19:45 +0900
committeripkn <ipknhama@gmail.com>2015-09-04 15:19:45 +0900
commite335618ba29436c26f0cfca670ee063b9c871538 (patch)
tree00cada2fe014035ebed0a77fa335dc53c63a8a3d /.travis.yml
parent21372f173c2964a51ab19590c7eabf4cd3203671 (diff)
parent5e5cabcea3b4d2d4f202359de2cce2cd49ceaff2 (diff)
downloadcrow-e335618ba29436c26f0cfca670ee063b9c871538.tar.gz
crow-e335618ba29436c26f0cfca670ee063b9c871538.zip
Merge pull request #71 from mnpk/master
Add helloworld example, Add coverage badge, Update README.md
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index ffc9b58..a547957 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,6 +8,7 @@ compiler:
#- clang
before_script:
+ - sudo pip install cpp-coveralls
- sudo add-apt-repository -y ppa:kalakris/cmake
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository -y ppa:boost-latest/ppa
@@ -22,3 +23,7 @@ before_script:
- cmake ..
script: make && ctest
+
+after_success:
+ - cd ..
+ - coveralls --gcov gcov-4.8 -i include --gcov-options '\-lp'