From 1c871c02718c5ab6ebefbfe5ebd5fca3bc56628d Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Sun, 27 Apr 2025 20:57:18 -0500 Subject: [PATCH] Build inside docker --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dda58cb..c1f2522 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,12 +27,16 @@ jobs: uses: https://github.com/actions/checkout@v4 - name: Apply patches + run: ./runtime-patches.sh + + - name: Install dependencies run: | - ./runtime-patches.sh + sudo apt-get update && + sudo apt-get install -y qemu-user-static - name: Run build process run: | - ./build.sh && + ./build-docker.sh && mv *-arm64-standalone.img showpieceos-arm64-standalone.img && mv *-arm64-client.img showpieceos-arm64-client.img