From 568db5770839a50633b14d3ff756a4e04f0f6c42 Mon Sep 17 00:00:00 2001 From: "Mason W." Date: Fri, 19 Sep 2025 15:34:22 -0400 Subject: [PATCH 1/2] Update linux_push_build.yml Change linux_push_build to run on supported `ubuntu-latest` --- .github/workflows/linux_push_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux_push_build.yml b/.github/workflows/linux_push_build.yml index f950e9dc..97114ddd 100644 --- a/.github/workflows/linux_push_build.yml +++ b/.github/workflows/linux_push_build.yml @@ -3,7 +3,7 @@ run-name: Linux Push Build on: [push] jobs: linux_push_build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - run: echo "Starting build process" @@ -42,4 +42,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: linux-executable - path: micropython/ports/unix/build-standard/micropython \ No newline at end of file + path: micropython/ports/unix/build-standard/micropython From 65e1150c2e84b471ea670719080a189a22a1b64f Mon Sep 17 00:00:00 2001 From: "Mason W." Date: Fri, 19 Sep 2025 15:38:36 -0400 Subject: [PATCH 2/2] Update linux_push_build.yml Fix libffi dependency (?) --- .github/workflows/linux_push_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux_push_build.yml b/.github/workflows/linux_push_build.yml index 97114ddd..de3b369b 100644 --- a/.github/workflows/linux_push_build.yml +++ b/.github/workflows/linux_push_build.yml @@ -30,7 +30,7 @@ jobs: run: | sudo apt install -y libsdl2-2.0-0 sudo apt install -y libsdl2-dev - sudo apt install -y libffi7 + sudo apt install -y libffi8 - name: Setup UNIX port and build run: |