From 0aa41b932e161257540803733ef91a683145e7e2 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sun, 26 Jan 2025 09:55:56 +0100 Subject: [PATCH] ci(fix): use tonistiigi/binfmt:qemu-v8.1.5 image for qemu --- .github/workflows/ci.yml | 5 +++++ .github/workflows/publish.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cc4d197..5561af39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,11 @@ jobs: - name: Set up QEMU if: runner.arch == 'X64' && matrix.platform != 'x86_64' uses: docker/setup-qemu-action@v3 + with: + # This should be temporary + # xref https://github.com/docker/setup-qemu-action/issues/188 + # xref https://github.com/tonistiigi/binfmt/issues/215 + image: tonistiigi/binfmt:qemu-v8.1.5 - run: | # ${{ matrix.distro }} ${{ matrix.platform }} tests cat < build.sh diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 88015d93..8d89b3f7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -72,6 +72,11 @@ jobs: - name: Set up QEMU if: matrix.platform != 'amd64' uses: docker/setup-qemu-action@v3 + with: + # This should be temporary + # xref https://github.com/docker/setup-qemu-action/issues/188 + # xref https://github.com/tonistiigi/binfmt/issues/215 + image: tonistiigi/binfmt:qemu-v8.1.5 - name: Set docker arch run: |