From bbd10a60b7079688555efcfcaea543b6ebf770ba Mon Sep 17 00:00:00 2001 From: Peter Baumgartner Date: Fri, 8 Dec 2023 07:12:05 -0700 Subject: [PATCH] Add qemu back in for emulated architectures --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1901ee4..dc9d287 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,16 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true + - name: Set up QEMU + if: runner.os == 'Linux' + uses: docker/setup-qemu-action@v1 + with: + platforms: all + - name: Build wheels uses: pypa/cibuildwheel@v2.16.2 with: