Skip to content

Commit

Permalink
ci: try adding pypy
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed May 11, 2024
1 parent 622c56b commit 2d3476e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 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 @@ -48,7 +49,7 @@ jobs:
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 @@ -64,6 +65,7 @@ jobs:
platform:
- runner: windows-latest
target: x64
interpreter: "3.8 pypy3.8 pypy3.9 pypy3.10"
- runner: windows-latest
target: x86
steps:
Expand All @@ -76,7 +78,7 @@ jobs:
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 @@ -102,7 +104,7 @@ jobs:
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 2d3476e

Please sign in to comment.