From 2655d7c666f8c61adff4f2201367fbf707e07104 Mon Sep 17 00:00:00 2001 From: Dogan Ulus Date: Sun, 16 Jun 2024 15:13:42 +0300 Subject: [PATCH] Try another action to maximize build space --- .github/workflows/carlasim-server.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/carlasim-server.yml b/.github/workflows/carlasim-server.yml index d4131bf..63bcd44 100644 --- a/.github/workflows/carlasim-server.yml +++ b/.github/workflows/carlasim-server.yml @@ -23,10 +23,22 @@ jobs: packages: write steps: - - name: Free disk space (Ubuntu) - uses: jlumbroso/free-disk-space@main + # - name: Free disk space (Ubuntu) + # uses: jlumbroso/free-disk-space@main + # with: + # tool-cache: true + + - name: Maximize build space + uses: easimon/maximize-build-space@master with: - tool-cache: true + remove-dotnet: 'true' + remove-android: 'true' + remove-haskell: 'true' + remove-codeql: 'true' + remove-docker-images: 'true' + + - name: Show disk space + run: sudo df -h - name: Checkout repository uses: actions/checkout@v4