From 0400c1ec7fcf9b1297109e22852710a8f6896e0e Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Mon, 24 Feb 2025 09:19:54 -0800 Subject: [PATCH] Fix Medley builds on github actions - currently breaks due to error in creating Docker image for arm64. (#2039) In github actions, remove build of Medley Docker for arm64 since the Dockerfile_medley build fails when loading tigervnc-standalone-server for arm64. Arm64 docker image has never been used anyway. It was meant for running online on arm64 servers, but we have never done that and have no plans to do so. So just getting rid of arm64 docker image rather than trying to fix it. --- .github/workflows/buildDocker.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildDocker.yml b/.github/workflows/buildDocker.yml index 0782f861..6de4b20b 100644 --- a/.github/workflows/buildDocker.yml +++ b/.github/workflows/buildDocker.yml @@ -154,7 +154,8 @@ jobs: if [ "${{ inputs.draft }}" = "false" ]; then docker_tags="${docker_image}:latest,${docker_image}:${MEDLEY_RELEASE#*-}_${MAIKO_RELEASE#*-}" - platforms="linux/amd64,linux/arm64" + platforms="linux/amd64" + #,linux/arm64 else docker_tags="${docker_image}:draft" platforms="linux/amd64" @@ -171,7 +172,8 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3 with: - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64 + # ,linux/arm64,linux/arm/v7 # Setup the Docker Buildx funtion - name: Set up Docker Buildx