From 301190e42746fc03eb4cbef9bd6d080c4b8e23fd Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 9 May 2022 22:09:31 +0200 Subject: Build ARM docker image in GitHub Actions using QEMU (#400) This PR updates the GH Action docker workflow to crossbuild the docker image for ARM using QEMU. This theoratically works but takes about for a clean build 2.5 hours, which may or may not be tolerable for each commit on `main`. A action run where the dependencies are already cached needs about 15 minutes with this PR. --- .github/workflows/docker.yaml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 8a616dba..8f1855af 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -19,6 +19,9 @@ jobs: - name: Check Out Repo uses: actions/checkout@v2 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Docker meta id: meta uses: docker/metadata-action@v3 @@ -51,6 +54,7 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 cache-from: type=gha cache-to: type=gha,mode=max -- cgit v1.3.1