From 7d85a59e6f3e83c30a1b07039df1ab4a900edcea Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Sat, 1 Feb 2025 17:53:01 -0800 Subject: [PATCH 1/3] Change ubuntu version from latest to 22.04 in Dockerfile_builder to handle issue where the Medley-online docker image was failing to find the lastest versions of libc and libm when loading maiko --- .github/workflows/Dockerfile_builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Dockerfile_builder b/.github/workflows/Dockerfile_builder index 614c7aa..5988ce1 100755 --- a/.github/workflows/Dockerfile_builder +++ b/.github/workflows/Dockerfile_builder @@ -8,7 +8,7 @@ # # ****************************************************************************** -FROM ubuntu:latest +FROM ubuntu:22.04 SHELL ["/bin/bash", "-c"] USER root:root # Install build tools From 55e20ea99383a951f1ca1020b7ccdbde41ab10ef Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Sat, 1 Feb 2025 18:48:38 -0800 Subject: [PATCH 2/3] In buildRelease.yml added apt update to emscriptem build since it was failing to find some of the packages called for by apt-get install sdl2 --- .github/workflows/buildRelease.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/buildRelease.yml b/.github/workflows/buildRelease.yml index cdb65a1..62a38ce 100644 --- a/.github/workflows/buildRelease.yml +++ b/.github/workflows/buildRelease.yml @@ -503,6 +503,7 @@ jobs: - name: Install SDL2 run: | export DEBIAN_FRONTEND=noninteractive + sudo -E apt-get update sudo -E apt-get install -y libsdl2-dev libsdl2-2.0-0 # Install Emscripten SDK From 7fe0f706409239dbf8114599e849e86e2b7d2992 Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Sat, 1 Feb 2025 19:10:38 -0800 Subject: [PATCH 3/3] In buildRelease.yml moving to ubuntu-22.04 instead of latest to see if it fixes these random linux arm64 build failures - crashes inside gcc compiler! --- .github/workflows/buildRelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildRelease.yml b/.github/workflows/buildRelease.yml index 62a38ce..becc4d8 100644 --- a/.github/workflows/buildRelease.yml +++ b/.github/workflows/buildRelease.yml @@ -152,7 +152,7 @@ jobs: || needs.inputs.outputs.force == 'true' ) - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: # Checkout the actions for this repo owner