Skip to content

Commit

Permalink
Attempt to bring MacOS workflow back to work. This time building univ…
Browse files Browse the repository at this point in the history
…ersal binaries (both ARM64 and x86_64)
  • Loading branch information
pawelsalawa committed Feb 12, 2025
1 parent 8d68368 commit ba05a68
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/mac_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,15 +226,6 @@ jobs:
run: |
sudo port install icu +universal
- name: Install OpenSSL
run: |
if brew list openssl 2>/dev/null; then
brew uninstall --ignore-dependencies openssl
fi
sudo port install openssl3 +universal
echo "DYLD_LIBRARY_PATH=/opt/local/lib/openssl-3:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Install Tcl
run: |
if brew list tcl-tk 2>/dev/null; then
Expand Down Expand Up @@ -423,6 +414,16 @@ jobs:
set +x
ls -l ../ext/
# This is done only at this stage, so that curl is not affected by this
- name: Install OpenSSL
run: |
if brew list openssl 2>/dev/null; then
brew uninstall --ignore-dependencies openssl
fi
sudo port install openssl3 +universal
echo "DYLD_LIBRARY_PATH=/opt/local/lib/openssl-3:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Prepare deps
run: |
mkdir ../lib ../include
Expand Down

0 comments on commit ba05a68

Please sign in to comment.