Use brew update instead of brew update-reset in CI macOS prepare script

Using `brew update-reset` causes homebrew to reset to homebrew's HEAD commit, which may
be buggy and broken. It appears whatever Cirrus was doing previously on their Catalina
VM is no longer a problem, and so update-reset isn't required anymore. Switch to
`brew update` to make sure we still get newer versions of the packages, but is
actually a versioned release of homebrew.
This commit is contained in:
Tim Wojtulewicz 2021-09-21 12:27:14 -07:00
parent a507d4294d
commit 1a4af90389

View file

@ -5,6 +5,6 @@ sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
set -e set -e
set -x set -x
brew update-reset brew update
brew upgrade cmake openssl brew upgrade cmake openssl
brew install swig bison brew install swig bison