From 62e29b5e20a998c45716f81ae15ce72fb7be7a1a Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 9 Feb 2023 13:14:10 -0700 Subject: [PATCH] CI: Call 'brew install' for macOS to ensure we're using openssl@3 on all hosts --- ci/macos/prepare.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ci/macos/prepare.sh b/ci/macos/prepare.sh index 8203593813..6d3909a90d 100755 --- a/ci/macos/prepare.sh +++ b/ci/macos/prepare.sh @@ -6,14 +6,14 @@ set -e set -x brew update -brew upgrade cmake openssl@1.1 -brew install swig bison flex ccache +brew upgrade cmake +brew install openssl@3 swig bison flex ccache python3 -m pip install --user websockets # Brew doesn't create the /opt/homebrew/opt/openssl symlink if you install # openssl@1.1, only with 3.0. Create the symlink if it doesn't exist. -if [ ! -e /opt/homebrew/opt/openssl ]; then - if [ -d /opt/homebrew/opt/openssl@1.1 ]; then - ln -s /opt/homebrew/opt/openssl@1.1 /opt/homebrew/opt/openssl - fi -fi +#if [ ! -e /opt/homebrew/opt/openssl ]; then +# if [ -d /opt/homebrew/opt/openssl@1.1 ]; then +# ln -s /opt/homebrew/opt/openssl@1.1 /opt/homebrew/opt/openssl +# fi +#fi