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

This fixes some issues with the Catalina builds when it prepares the image and the base Cirrus image has old recipes for Homebrew. The VM then has to build a bunch of packages it shouldn't need to.
10 lines
194 B
Bash
Executable file
10 lines
194 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-reset
|
|
brew upgrade cmake openssl
|
|
brew install swig bison
|