Skip to content

Commit

Permalink
try fix the musl and x86 darwin builds
Browse files Browse the repository at this point in the history
  • Loading branch information
seapagan committed Feb 28, 2025
1 parent c368b3b commit eb4b7d6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ jobs:

- name: Install musl tools
if: matrix.binary_target == 'x86_64-unknown-linux-musl'
run: sudo apt-get install -y musl-tools
run: |
sudo apt-get update
sudo apt-get install -y musl-tools musl-dev libssl-dev pkg-config
- name: Install macOS dependencies (x86_64)
if: matrix.binary_target == 'x86_64-apple-darwin'
run: |
brew install openssl@3
echo 'export OPENSSL_DIR=$(brew --prefix openssl@3)' >> $GITHUB_ENV
- name: Install target
run: rustup target add ${{ matrix.binary_target }}
Expand Down

0 comments on commit eb4b7d6

Please sign in to comment.