From 9cbce11523bc64f60462ab2a8c334452d55fc87f Mon Sep 17 00:00:00 2001 From: Francois Best Date: Sun, 9 Oct 2016 18:40:26 +0200 Subject: [PATCH] Install lcov from apt, fix path. --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba53431..3d92fa3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,14 +47,14 @@ matrix: before_install: - sudo apt-get update -qq - - sudo apt-get install lcov - source <(curl -SLs https://raw.githubusercontent.com/fortyseveneffects/travis-ci-arduino/master/install.sh) install: # Install lcov from source - - wget http://ftp.fr.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz - - tar xf lcov_1.11.orig.tar.gz - - sudo make -C lcov-1.11/ install + # - wget http://ftp.fr.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz + # - tar xf lcov_1.11.orig.tar.gz + # - sudo make -C lcov-1.11/ install + - sudo apt-get install lcov - gem install coveralls-lcov - lcov --version @@ -74,7 +74,6 @@ script: after_success: # Generate code coverage information & send to Coveralls - - cd build - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info 'test/*' '/usr/*' 'external/*' --output-file coverage.info - lcov --list coverage.info