Skip to content

Commit

Permalink
feat: build wheels for aarch64 to allow use in embedded systems (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mimoja authored Jun 26, 2024
1 parent fa48bc0 commit d0ac990
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,27 @@ jobs:
build_wheels:
needs: [release]

name: Build wheels on ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }} with arch ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
arch:
- "x86_64"
- "aarch64"

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: "main"

- name: Set up QEMU
if: matrix.arch == 'aarch64'
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
with:
platforms: arm64

# Used to host cibuildwheel
- name: Set up Python
uses: actions/setup-python@v4
Expand Down Expand Up @@ -144,6 +153,7 @@ jobs:
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
CIBW_BUILD_VERBOSITY: 3
REQUIRE_CYTHON: 1
CIBW_ARCHS: ${{ matrix.arch }}

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit d0ac990

Please sign in to comment.