From 2dfa93be0be15665ca4579ba7527d7610349a2d5 Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Fri, 25 Oct 2024 05:23:49 -0600 Subject: [PATCH] Use the free disk space action on Ubuntu --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca90cdd..209c169 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,16 @@ jobs: os: [ubuntu-24.04, macos-15, windows-2022] build_type: [Debug, MinSizeRel, RelWithDebInfo, Release] steps: + - name: Maximize build space + if: matrix.os == env.LINUX_IMAGE + uses: AdityaGarg8/remove-unwanted-software@v4.1 + with: + remove-android: 'true' + remove-dotnet: 'true' + remove-haskell: 'true' + remove-codeql: 'true' + remove-docker-images: 'true' + remove-cached-tools: 'true' - name: Checkout uses: actions/checkout@v4