Skip to content

Commit

Permalink
Merge branch 'feat/fix-travis-osx'
Browse files Browse the repository at this point in the history
  • Loading branch information
wdoekes committed Oct 30, 2019
2 parents cc24f9d + d1f1906 commit 1e6af75
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@ matrix:

before_script:
- autoreconf -vifs
# 2019-10-30: Homebrew/brew.rb:23:in `require_relative': ...
# ... unexpected keyword_rescue, expecting keyword_end
# https://discourse.brew.sh/t/missing-file-homebrew-dead/5657
- if [ "$TRAVIS_OS_NAME" = osx ]; then
set -x &&
brew update-reset &&
if ! brew install gsl; then
cd "$(brew --repo)" && git add . && git fetch &&
git reset --hard origin/master;
fi;
set +x;
fi
- if [ "$TRAVIS_OS_NAME" = osx ]; then brew install gsl; fi
# 2016-10: Apple doesn't include openssl any more because of security
# problems openssl had. Manually specify path to includes/libs.
Expand Down

0 comments on commit 1e6af75

Please sign in to comment.