From 5ab95d7d239b3b548b0d69ba7c7559b070906082 Mon Sep 17 00:00:00 2001 From: Nick Klockenga Date: Tue, 21 Oct 2025 13:36:41 -0400 Subject: [PATCH] Add disk space cleanup steps in build workflow Added steps to free up additional disk space by removing Android tools and .NET SDKs. --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 87a407fe3..4286e1e7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,13 @@ jobs: matrix: target: [ "pi0", "pi2", "pi02w", "pi4" ] steps: + - name: free up additional disk space + run: | + # remove android tools, this can free up 10+ GB of space + sudo rm -rf /usr/local/lib/android + # remove all .NET SDKs, this can free up a few GB of space + sudo rm -rf /usr/share/dotnet + - name: checkout seedsigner-os uses: actions/checkout@v4 with: