Skip to content

Commit

Permalink
Make brew bundle not have to succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed Feb 20, 2020
1 parent dc9ff34 commit 88d9a0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ before_install:
# And Homebrew can't always bundle unless it is the exact latest version:
# See <https://github.com/Homebrew/homebrew-bundle/issues/646>
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update --verbose; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle --verbose; fi
# Allow the bundle command to fail because if anything it tries to install (like Python)
# provides a binary that can replace something that already exists, it will treat the
# inability to link it as an error and fail the command. You can --force a link step, but
# I don't see a way to tell it to not replace things that exist and also not fail.
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle --verbose || true; fi
# Try installing gcc6 twice in case of errors like this:
# Error: HOMEBREW_LOGS was not exported!
# Please don't worry, you likely hit a bug auto-updating from an old version.
Expand Down

1 comment on commit 88d9a0f

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch update-before-bundle. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 10489 seconds

Tests produced 681 warnings. 681 were for lower-than-expected alignment scores

Please sign in to comment.