Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
ci: Add pypy on macOS & linux (#5)
Browse files Browse the repository at this point in the history
* ci: try adding pypy

Signed-off-by: Henry Schreiner <[email protected]>

* ci: try getting pypy before hand on Windows

Signed-off-by: Henry Schreiner <[email protected]>

* ci: try dropping pypy 3.8 on Windows

Signed-off-by: Henry Schreiner <[email protected]>

* ci: drom windows pypy

---------

Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii authored May 11, 2024
1 parent 1243b8e commit 4f6edcd
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
interpreter: "3.8 pypy3.8 pypy3.9 pypy3.10"
- runner: ubuntu-latest
target: x86
- runner: ubuntu-latest
Expand All @@ -41,14 +42,11 @@ jobs:
target: ppc64le
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
args: --release --out dist --interpreter ${{ matrix.platform.interpreter || '3.8' }}
sccache: 'true'
manylinux: ${{ matrix.platform.manylinux || 'auto' }}
- name: Upload wheels
Expand All @@ -68,15 +66,11 @@ jobs:
target: x86
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
args: --release --out dist --interpreter ${{ matrix.platform.interpreter || '3.8' }}
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -95,14 +89,11 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
args: --release --out dist --interpreter "3.8 pypy3.8 pypy3.9 pypy3.10"
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 4f6edcd

Please sign in to comment.