We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4cbeba + e7b114b commit 0de39d1Copy full SHA for 0de39d1
.github/workflows/build-wheels.yaml
@@ -51,7 +51,12 @@ jobs:
51
run: pip install maturin
52
53
- name: Build wheel
54
- run: maturin build --release --strip --target ${{ matrix.target }}
+ run: |
55
+ if [[ "${{ matrix.platform }}" == manylinux-* ]]; then
56
+ docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin:latest build --release --strip --target ${{ matrix.target }} --manylinux 2_17 -i python${{ matrix.python-version }}
57
+ else
58
+ maturin build --release --strip --target ${{ matrix.target }}
59
+ fi
60
61
- name: Upload wheel artifact
62
uses: actions/upload-artifact@v4
0 commit comments