Skip to content

Commit

Permalink
Fix Travis CI (#322)
Browse files Browse the repository at this point in the history
* CI: fix homebrew commands

* CI on OSX: try to reduce verbosity as it cause job error on Travis:

Error message: The job exceeded the maximum log length, and has been terminated.
  • Loading branch information
cyrilbouvier authored Mar 18, 2021
1 parent 18fc790 commit 9b77b5c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ matrix:
- os: osx
compiler: clang
before_install:
- brew update
- brew uninstall automake && brew install automake
- brew install autoconf libtool
- brew update > brew-update.log 2>&1 || cat brew-update.log
- brew list automake &>/dev/null || brew install automake
- brew list autoconf &>/dev/null || brew install autoconf
- brew list libtool &>/dev/null || brew install libtool
# - brew install homebrew/science/openblas

install:
Expand Down

0 comments on commit 9b77b5c

Please sign in to comment.