From 4bc9913d3151cfc6fb8cc76cea11682ae532ae26 Mon Sep 17 00:00:00 2001 From: gasp Date: Thu, 25 Sep 2025 16:54:02 +0200 Subject: [PATCH 1/3] test --- .github/workflows/ci-rust.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-rust.yaml b/.github/workflows/ci-rust.yaml index d882202a2..9b3b5c1cb 100644 --- a/.github/workflows/ci-rust.yaml +++ b/.github/workflows/ci-rust.yaml @@ -42,7 +42,10 @@ jobs: - uses: actions/checkout@v5 - name: Free disk space run: | - sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache + rm -rf /usr/share/dotnet + rm -rf /usr/local/lib/android + rm -rf /opt/hostedtoolcache + - name: Install dependencies run: | sudo apt-get update From 5b020275aaa43677d486c313653f5e6f908bd470 Mon Sep 17 00:00:00 2001 From: gasp Date: Thu, 25 Sep 2025 17:01:40 +0200 Subject: [PATCH 2/3] test --- .github/workflows/ci-rust.yaml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-rust.yaml b/.github/workflows/ci-rust.yaml index 9b3b5c1cb..ae6e9d3f7 100644 --- a/.github/workflows/ci-rust.yaml +++ b/.github/workflows/ci-rust.yaml @@ -40,12 +40,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - name: Free disk space - run: | - rm -rf /usr/share/dotnet - rm -rf /usr/local/lib/android - rm -rf /opt/hostedtoolcache - + - name: Free Disk Space + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be + with: + tool-cache: true + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true - name: Install dependencies run: | sudo apt-get update From 7a5b18b61ef8aebbd20ca079485d937443c6ed01 Mon Sep 17 00:00:00 2001 From: gasp Date: Thu, 25 Sep 2025 17:12:41 +0200 Subject: [PATCH 3/3] test --- .github/workflows/ci-rust.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-rust.yaml b/.github/workflows/ci-rust.yaml index ae6e9d3f7..758f890ad 100644 --- a/.github/workflows/ci-rust.yaml +++ b/.github/workflows/ci-rust.yaml @@ -40,16 +40,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - name: Free Disk Space + - name: Free disk space 1/2 + run: rm -rf /opt/hostedtoolcache + - name: Free disk space 2/2 uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be with: - tool-cache: true android: true dotnet: true haskell: true - large-packages: true - docker-images: true - swap-storage: true - name: Install dependencies run: | sudo apt-get update