Skip to content

Commit

Permalink
.github/workflows/dist.yml: Build manylinux aarch64 wheels via QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jun 25, 2024
1 parent ab24dac commit 6846c89
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ jobs:
arch: x86_64
- os: ubuntu-latest
arch: i686
- os: ubuntu-latest
arch: aarch64
- os: macos-13
arch: x86_64
- os: macos-14
Expand All @@ -190,6 +192,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up QEMU
if: runner.os == 'Linux' && matrix.arch != 'x86_64' && matrix.arch != 'i686'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- uses: actions/download-artifact@v4
with:
name: dist
Expand Down

0 comments on commit 6846c89

Please sign in to comment.