diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-02 14:35:19 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-11 21:13:58 +0200 |
commit | 22c28284f679920ba38958469f03a1326d1b999d (patch) | |
tree | 9e18911e6594b31aa828029ac0e662512a7210a8 /.travis.yml | |
parent | c6acd333704bd5537db82024dd2a6dc537a6efdb (diff) | |
download | curl-22c28284f679920ba38958469f03a1326d1b999d.tar.gz |
travis: install lcov only for the coverage job
Reduces the time needed for the other jobs a little.
Closes https://github.com/curl/curl/pull/3721
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ed8c9d4a8..dc6933453 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,6 @@ addons: packages: &common_packages - cmake - gcc-8 - - lcov - valgrind - libev-dev - libc-ares-dev @@ -233,6 +232,13 @@ matrix: env: - T=coverage - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8" + addons: + apt: + sources: + - *common_sources + packages: + - *common_packages + - lcov - os: linux compiler: gcc dist: trusty |