Skip to content

Commit

Permalink
try force reinstall openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
benbovy committed Aug 20, 2024
1 parent ff4b2df commit 4389f31
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ jobs:
path: ${{ runner.temp }}/3rd-party/dist
key: ${{ matrix.os }}-${{ matrix.arch }}-${{ env.ABSL_VERSION }}-${{ env.S2GEOMETRY_VERSION }}-${{ env.S2GEOGRAPHY_VERSION }}-${{ hashFiles('ci/*') }}

- name: Install OpenSSL SDK (Linux / MacOS)
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install libssl-dev -v --reinstall
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install openssl@3
fi
- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down

0 comments on commit 4389f31

Please sign in to comment.