Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,18 @@ jobs:
brew install sccache
brew install mono
brew install bison # required by thrift pulled via vcpkg
brew install openssl@3

# check openssl installed versions
ls -la /opt/homebrew/Cellar/openssl@3/*/lib/libssl.dylib

# link openssl
brew reinstall openssl@3
brew unlink openssl@3 && brew link openssl@3
which openssl

# check openssl installed versions
ls -la /opt/homebrew/Cellar/openssl@3/*/lib/libssl.dylib

echo "SCCACHE_DIR=/tmp/sccache" >> $GITHUB_ENV
mkdir -p /tmp/sccache
# Start sccache server
Expand Down
Loading