From 7d71af9d85d9961f4251a87e34f2881082e30da6 Mon Sep 17 00:00:00 2001 From: Tony Redondo Date: Mon, 3 Mar 2025 11:05:20 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7e1c4d8c..3eda12efa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,23 @@ jobs: steps: - uses: actions/checkout@v4 + # Let's try to get more free space and avoid `System.IO.IOException: No space left on device` error + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: false + + # all of these default to true, but feel free to set to + # "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Set up Go uses: actions/setup-go@v5 with: