Commit 6690cdd7 authored by Evgeniy Isaev's avatar Evgeniy Isaev Committed by Mouse

Disable brew update; switch to Travis addons for installing dependencies

No related merge requests found
......@@ -27,18 +27,25 @@ matrix:
- os: osx
env: TASK=distcheck
addons:
homebrew:
packages:
- libtool
- lcov
update: false
apt:
packages:
- gcc-multilib
- lcov
- libasan0
- libasan1
- libasan2
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get install -y gcc-multilib lcov libasan* ;
gem install coveralls-lcov;
fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update;
brew uninstall libtool;
brew install libtool;
brew install lcov;
fi
script:
- export
- autoreconf -iv
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment