Compare commits

...

1 commit

Author SHA1 Message Date
213129de47 .travis.yml: Work around known bug in travis-ci
Described at https://github.com/travis-ci/travis-ci/issues/8826
there is a conflict between the gcc compiler and "oclint", which is a
'brew cask' that has been installed automatically before the mac
builds start.  This is one of the workarounds frequently suggested.
The "|| true" anticipates that if 'oclint' were not installed, the
removal command might signal failure; we actually want to just continue
in this case, because it means upstream has fixed the bug.
2018-09-18 20:34:14 -05:00

View file

@ -25,6 +25,7 @@ addons:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew cask uninstall oclint || true
brew update;
brew install gtk+3;
brew install portaudio;