Skip to content

Commit

Permalink
chore: add openssl installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaz001 committed Aug 7, 2024
1 parent 20585dc commit 177d58c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y openssl libssl-dev
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -72,6 +76,10 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y openssl libssl-dev
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -100,6 +108,9 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: ${{ matrix.platform.target }}
- name: Install dependencies
run: |
choco install openssl
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -128,6 +139,9 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
brew install openssl
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit 177d58c

Please sign in to comment.