From a1fc7416e143ae95fa5c7d36f62b1e07cff061d6 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Sun, 23 Mar 2014 16:51:32 -0600 Subject: [PATCH] Update travis to also push coverage results --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 78fa6bd2..b79aeaba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ -language: cpp +language: cpp clang compiler: - gcc +before_install: + - sudo pip install cpp-coveralls --use-mirrors script: - - mkdir build - - cd build - - cmake ../ + - cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug -D UNIT_TEST_LIGHT:BOOL=TRUE -D USE_LIBCXX:BOOL=FALSE . - make - make test + - coverall -x hpp notifications: recipients: - jason@emptycrate.com