From 87d954a0809a9135878fbb71c11b68968e5b1269 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 14 Nov 2022 10:21:01 +1100 Subject: [PATCH] Use QEMU for Linux wheels --- .github/workflows/wheel.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index 963c6d046..239f3e929 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -16,7 +16,11 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'recursive' - + - name: Set up QEMU + if: runner.os == 'Linux' + uses: docker/setup-qemu-action@v2 + with: + platforms: all - name: Build wheels uses: pypa/cibuildwheel@v2.11.2