From 7e5ac79388bda5ad41a7218cb374227d9dcabd1b Mon Sep 17 00:00:00 2001 From: Govind Kamat Date: Mon, 24 Feb 2025 09:16:35 -0800 Subject: [PATCH] Interim workaround for QEMU bug that causes a fatal crash in the Docker ARM build. Signed-off-by: Govind Kamat --- .github/workflows/docker-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index da87a35d..c43b9342 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -22,6 +22,11 @@ jobs: steps: - name: Set up QEMU uses: docker/setup-qemu-action@v3 + # Workaround for a memory allocation layout bug in QEMU, + # triggered by a kernel update to Linux machine images. + # Note that this is not an actual fix. + with: + image: tonistiigi/binfmt:qemu-v7.0.0-28 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3