Commit ca3128c9 authored by Mouse's avatar Mouse

More fixes for Travis

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