Skip to content

Commit ac594d1

Browse files
authored
ci: add riscv64 manylinux wheels (#359)
Signed-off-by: Julien Stephan <[email protected]>
1 parent 2b2327f commit ac594d1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,9 @@ jobs:
179179
- os: ubuntu
180180
platform: linux
181181
target: s390x
182+
- os: ubuntu
183+
platform: linux
184+
target: riscv64gc-unknown-linux-gnu
182185
# musllinux
183186
- os: ubuntu
184187
platform: linux
@@ -208,21 +211,21 @@ jobs:
208211

209212
- name: build sdist
210213
if: ${{ matrix.os == 'ubuntu' && matrix.target == 'x86_64' && matrix.manylinux == 'auto' }}
211-
uses: PyO3/maturin-action@v1
214+
uses: PyO3/maturin-action@v1.49.3
212215
with:
213216
command: sdist
214217
args: --out dist
215218

216219
- name: build wheels
217-
uses: PyO3/maturin-action@v1
220+
uses: PyO3/maturin-action@v1.49.3
218221
with:
219222
target: ${{ matrix.target }}
220223
manylinux: ${{ matrix.manylinux || 'auto' }}
221224
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t' }}
222225

223226
- name: build pypy wheels
224227
if: ${{ matrix.pypy }}
225-
uses: PyO3/maturin-action@v1
228+
uses: PyO3/maturin-action@v1.49.3
226229
with:
227230
target: ${{ matrix.target }}
228231
manylinux: ${{ matrix.manylinux || 'auto' }}

0 commit comments

Comments
 (0)