Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: add riscv64 to wheel build matrix
  • Loading branch information
gounthar committed Mar 12, 2026
commit 6b4306c84d05faf06beb2a360a310704de52f64b
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
cibw_arch: ["auto64", "aarch64", "universal2"]
cibw_arch: ["auto64", "aarch64", "universal2", "riscv64"]
cibw_python:
- "cp39"
- "cp310"
Expand All @@ -87,6 +87,10 @@ jobs:
cibw_arch: universal2
- os: windows-latest
cibw_arch: aarch64
- os: macos-latest
cibw_arch: riscv64
- os: windows-latest
cibw_arch: riscv64

defaults:
run:
Expand All @@ -102,10 +106,10 @@ jobs:
submodules: true

- name: Set up QEMU
if: matrix.os == 'ubuntu-latest' && matrix.cibw_arch == 'aarch64'
if: matrix.os == 'ubuntu-latest' && (matrix.cibw_arch == 'aarch64' || matrix.cibw_arch == 'riscv64')
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
with:
platforms: arm64
platforms: arm64,riscv64

- uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
env:
Expand Down