From f8be0738d2e7a90748d99bb981f21919755b473b Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Sun, 7 Dec 2025 21:29:03 +0100 Subject: [PATCH] ci: try freeing some disk space for gui tests --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 153e1eb7a..d5c52d342 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,22 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + 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 our workflow needs parts + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3