Merge remote-tracking branch 'origin/topic/timw/fix-macos-build-again'

* origin/topic/timw/fix-macos-build-again:
  CI: Remove commented openssl 1.1 workaround from macOS preparation script
  CI: Fix installation of python package on macOS
This commit is contained in:
Tim Wojtulewicz 2024-04-08 12:02:03 -07:00
commit 0438c8944d
3 changed files with 14 additions and 9 deletions

View file

@ -1,3 +1,11 @@
7.0.0-dev.108 | 2024-04-08 12:02:03 -0700
* CI: Remove commented openssl 1.1 workaround from macOS preparation script (Tim Wojtulewicz, Corelight)
* CI: Fix installation of python package on macOS (Tim Wojtulewicz, Corelight)
* fix ZAM "cat" of doubles/times to include trailing ".0" per normal BiF behavior (Vern Paxson, Corelight)
7.0.0-dev.102 | 2024-04-02 08:17:08 -0700 7.0.0-dev.102 | 2024-04-02 08:17:08 -0700
* fix ZAM "cat" of doubles/times to include trailing ".0" per normal BiF behavior (Vern Paxson, Corelight) * fix ZAM "cat" of doubles/times to include trailing ".0" per normal BiF behavior (Vern Paxson, Corelight)

View file

@ -1 +1 @@
7.0.0-dev.102 7.0.0-dev.108

View file

@ -8,12 +8,9 @@ set -x
brew update brew update
brew upgrade cmake brew upgrade cmake
brew install openssl@3 swig bison flex ccache libmaxminddb brew install openssl@3 swig bison flex ccache libmaxminddb
python3 -m pip install --user websockets
# Brew doesn't create the /opt/homebrew/opt/openssl symlink if you install if [ $(sw_vers -productVersion | cut -d '.' -f 1) -lt 14 ]; then
# openssl@1.1, only with 3.0. Create the symlink if it doesn't exist. python3 -m pip install --upgrade pip
#if [ ! -e /opt/homebrew/opt/openssl ]; then fi
# if [ -d /opt/homebrew/opt/openssl@1.1 ]; then
# ln -s /opt/homebrew/opt/openssl@1.1 /opt/homebrew/opt/openssl python3 -m pip install --user --break-system-packages websockets
# fi
#fi