Skip to content

Commit 0400c1e

Browse files
authored
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.
1 parent 736ac51 commit 0400c1e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/buildDocker.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ jobs:
154154
if [ "${{ inputs.draft }}" = "false" ];
155155
then
156156
docker_tags="${docker_image}:latest,${docker_image}:${MEDLEY_RELEASE#*-}_${MAIKO_RELEASE#*-}"
157-
platforms="linux/amd64,linux/arm64"
157+
platforms="linux/amd64"
158+
#,linux/arm64
158159
else
159160
docker_tags="${docker_image}:draft"
160161
platforms="linux/amd64"
@@ -171,7 +172,8 @@ jobs:
171172
- name: Set up QEMU
172173
uses: docker/setup-qemu-action@v3
173174
with:
174-
platforms: linux/amd64,linux/arm64,linux/arm/v7
175+
platforms: linux/amd64
176+
# ,linux/arm64,linux/arm/v7
175177

176178
# Setup the Docker Buildx funtion
177179
- name: Set up Docker Buildx

0 commit comments

Comments
 (0)