Skip to content

Commit

Permalink
feat: update manylinux in maturin
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Nov 9, 2023
1 parent 9a938f2 commit c3f892e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, aarch64, armv7]
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v3
# with:
Expand All @@ -30,13 +30,25 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build wheels

- name: Build wheels (x86)
if: matrix.target == 'x86_64'
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto

- name: Build wheels (aarch64)
if: matrix.target == 'aarch64'
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: 2_28

# - name: Upload wheels
# uses: actions/upload-artifact@v3
# with:
Expand Down

0 comments on commit c3f892e

Please sign in to comment.