Skip to content

Commit

Permalink
build for 32-bit arm
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Dec 11, 2024
1 parent 4ec7bf8 commit 79ac003
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:


build_wheels:
name: Wheels on ${{ matrix.os }}${{ matrix.extra }}
name: Wheels on ${{ matrix.os }} ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
arch_linux: ["aarch64"]
arch: ["aarch64", "armv7l"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -57,9 +57,10 @@ jobs:

- uses: pypa/[email protected]
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch_linux }}
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: "cp311-manylinux* cp312-manylinux* cp313-manylinux*"
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_ARMV7L_IMAGE: "manylinux_2_28"
- name: Verify clean directory
run: git diff --exit-code
shell: bash
Expand Down

0 comments on commit 79ac003

Please sign in to comment.