Fix homebrew (#8791)

The macOS tests run on this PR would fail without this change.

* brew update

* add link to upstream issue
This commit is contained in:
Brad Warren 2021-04-12 13:36:38 -07:00 committed by GitHub
parent 06bece36de
commit e33090f282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,10 @@
steps:
# We run brew update because we've seen attempts to install an older version
# of a package fail. See
# https://github.com/actions/virtual-environments/issues/3165.
- bash: |
set -e
brew update
brew install augeas
condition: startswith(variables['IMAGE_NAME'], 'macOS')
displayName: Install MacOS dependencies