From f12cf363647c1b8c6de893ddf6096fd7a5e75e93 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Wed, 14 Feb 2024 22:22:35 +0200 Subject: [PATCH] ci: free up space on ubuntu test job (#1555) * ci: free up space on ubuntu test job (cherry picked from commit d234d2335f49ba5c0284fe0efd696856be2e58bf) * fixup! ci: free up space on ubuntu test job * ci use commit hash instead of malleable tag for free space action --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55ff513d..5ff9a6d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,6 +115,19 @@ jobs: os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: + - name: (Free disk space on Ubuntu) + if: matrix.os == 'ubuntu-latest' + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be + with: + # removing all of these takes ~10 mins, so just do as needed + android: true + dotnet: true + haskell: true + docker-images: false + large-packages: false + swap-storage: false + tool-cache: false + - name: Checkout sources uses: actions/checkout@v4.1.1