Commit ca3128c9 authored by Mouse's avatar Mouse

More fixes for Travis

parent eeda2a24
......@@ -9,7 +9,7 @@ os:
- osx
# Linux
#dist: xenial
dist: xenial
sudo: required
# OS X only supports one image. Use the latest.
......@@ -26,9 +26,14 @@ matrix:
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == Linux ]]; then
sudo apt-get install -y gcc-multilib lcov libasan*
gem install coveralls-lcov
if [[ "$BUILD_OS" == "linux" ]]; then
sudo apt-get install -y gcc-multilib lcov libasan* ;
gem install coveralls-lcov;
else
brew update;
brew uninstall libtool;
brew install libtool;
brew install lcov;
fi
script:
- 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