Skip to content

Commit 363d2dc

Browse files
fix: resolve aarch64 wheel build failure in release workflow
- Add --find-interpreter to maturin args so Docker container finds Python interpreters for aarch64 cross-compilation - Add fail-fast: false to prevent cascading cancellation when one platform build fails
1 parent ac4e64b commit 363d2dc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
build-wheels:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
include:
1617
- os: ubuntu-latest
@@ -32,7 +33,7 @@ jobs:
3233
uses: PyO3/maturin-action@v1
3334
with:
3435
target: ${{ matrix.target }}
35-
args: --release --out dist
36+
args: --release --out dist --find-interpreter
3637
manylinux: auto
3738
- uses: actions/upload-artifact@v4
3839
with:

0 commit comments

Comments
 (0)