Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ jobs:
os: macos-latest
executable: 'geode'
prebuild: |
brew fetch --force --bottle-tag=ventura openssl@3
brew reinstall $(brew --cache --bottle-tag=ventura openssl@3)
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
arch -x86_64 brew update
arch -x86_64 brew reinstall openssl@3
export OPENSSL_STATIC=1
export OPENSSL_DIR="/opt/homebrew/opt/openssl@3"
export OPENSSL_DIR="$(arch -x86_64 brew --prefix openssl@3)"
target: x86_64-apple-darwin

- name: "Linux"
Expand Down
Loading