From 79bfd4724dd0501b65e994a02afc6976ce38ec56 Mon Sep 17 00:00:00 2001 From: Alex Reinking Date: Tue, 27 Aug 2024 17:36:57 -0400 Subject: [PATCH] Restore docker/setup-qemu-action Actually, we need this because LLVM doesn't cross-compile its own build-time tools. We'll likely need this for Halide, too, for similar reasons. --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3731fac..46819b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,6 +41,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v3.2.0 + with: + platforms: "arm64" + - name: Build and push image uses: docker/build-push-action@v6.7.0 with: