Skip to content

Commit

Permalink
Problem: Travis CI OSX builds are broken
Browse files Browse the repository at this point in the history
Solution: add a workaround to reinstall libtool. Travis hasn't fixed
the issue in a month, so time for a little hack until they sort it.
  • Loading branch information
bluca committed Jul 24, 2016
1 parent b2e8a90 commit 531b3bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -40,6 +40,8 @@ addons:

before_install:
- if [ $TRAVIS_OS_NAME == "osx" ] ; then brew update; brew install binutils ; fi
# workaround for Travis OSX CI bug, hasn't been fixed in a month so time for a hack
- if [ $TRAVIS_OS_NAME == "osx" ] ; then brew uninstall libtool && brew install libtool ; fi

before_script:
# ZMQ stress tests need more open socket (files) than the usual default
Expand Down

0 comments on commit 531b3bf

Please sign in to comment.