Skip to content

Commit

Permalink
FIX: Need qemu
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 5, 2024
2 parents 7ea22b4 + f58f612 commit 1084a55
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
pull_request:
branches:
- master

push:
tags:
- "v*"
Expand All @@ -13,6 +12,7 @@ jobs:
build_bdist:
name: "Build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
runs-on: ${{ matrix.os }}
timeout-minutes: 30 # should be long enough, but let's prevent hangs
strategy:
fail-fast: false
matrix:
Expand All @@ -33,6 +33,13 @@ jobs:
with:
fetch-depth: 0

# For aarch64 support
# https://cibuildwheel.pypa.io/en/stable/faq/#emulation
- uses: docker/setup-qemu-action@v3
with:
platforms: all
if: runner.os == 'Linux' && matrix.arch == 'aarch64'

- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/[email protected]
env:
Expand Down

0 comments on commit 1084a55

Please sign in to comment.