From 34e7613ffaabb645b350dc8400226a0b2a4390db Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 10 Oct 2025 07:23:21 -1000 Subject: [PATCH] docs --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 918f4209d3..b16bc6610e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -435,13 +435,14 @@ jobs: matrix: components: ${{ fromJson(needs.test-build-components-splitter.outputs.matrix) }} steps: - - name: Maximize build space - uses: easimon/maximize-build-space@c28619d8999a147d5e09c1199f84ff6af6ad5794 - with: - remove-android: 'true' - remove-dotnet: 'true' - remove-haskell: 'true' - remove-codeql: 'true' + - name: Free up disk space + run: | + echo "Disk space before cleanup:" + df -h + echo "Removing unwanted software to free up disk space..." + sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL + echo "Disk space after cleanup:" + df -h - name: List components run: echo ${{ matrix.components }}