mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00

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.
10 lines
188 B
Bash
Executable file
10 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Preparing macOS environment"
|
|
sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
|
|
set -e
|
|
set -x
|
|
|
|
brew update
|
|
brew upgrade cmake openssl
|
|
brew install swig bison
|