Merge pull request #3228 from PatTheMav/ci-brew-bundle-fix

CI: Fix Brew Bundler breaking without prior brew update
master
Joel Bethke 2020-07-29 14:15:17 -05:00 committed by GitHub
commit 2f9b57ab8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ jobs:
- name: 'Install prerequisites (Homebrew)'
shell: bash
run: |
brew update --preinstall
brew bundle --file ./CI/scripts/macos/Brewfile
- name: 'Restore Chromium Embedded Framework from cache'
id: cef-cache

View File

@ -103,6 +103,7 @@ install_homebrew_deps() {
exit 1
fi
brew update
brew bundle --file ${CI_SCRIPTS}/Brewfile
}