Merge pull request #3 from adafruit/github-actions-arm
Some checks failed
Pip / build (ubuntu-24.04-arm, 3.11) (push) Has been cancelled
Pip / build (ubuntu-24.04-arm, 3.12) (push) Has been cancelled
Pip / build (ubuntu-24.04-arm, 3.13) (push) Has been cancelled
Wheels / Build SDist (push) Has been cancelled
Wheels / Wheels on ubuntu-24.04-arm (push) Has been cancelled
Wheels / Upload release (push) Has been cancelled

Do github actions on arm systems
This commit is contained in:
Jeff Epler 2025-02-03 20:29:21 -06:00 committed by GitHub
commit 143a5971ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 8 deletions

View file

@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: ["ubuntu-latest"]
platform: ["ubuntu-24.04-arm"]
python-version: ["3.11", "3.12", "3.13"]
runs-on: ${{ matrix.platform }}

View file

@ -15,7 +15,7 @@ concurrency:
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
with:
@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
os: ["ubuntu-24.04-arm"]
arch_linux: ["aarch64"]
steps:
- uses: actions/checkout@v4
@ -50,11 +50,6 @@ jobs:
submodules: true
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all
- uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch_linux }}