From f43783d3b74b07d9caa2189d905a412d7d1df68f Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Fri, 27 Mar 2026 19:51:43 +0100 Subject: [PATCH 1/3] Free more space with free_disk_space In communication we still run out of disk space in sanitizer runs. Signed-off-by: Ulrich Huber --- .github/actions/free_disk_space/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/free_disk_space/action.yml b/.github/actions/free_disk_space/action.yml index 43af774..539af15 100644 --- a/.github/actions/free_disk_space/action.yml +++ b/.github/actions/free_disk_space/action.yml @@ -29,4 +29,5 @@ runs: remove_haskell: true remove_tool_cache: true remove_swap: true + remove_folders: "/usr/share/swift /usr/share/miniconda /usr/share/az* /usr/local/lib/node_modules /usr/local/share/chromium /usr/local/share/powershell /usr/local/julia /usr/local/aws-cli /usr/local/aws-sam-cli /usr/share/gradle" rm_cmd: "rmz" From 67cc1dc3886a9661dd2f7852bf441a5f09f89361 Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Fri, 27 Mar 2026 20:05:01 +0100 Subject: [PATCH 2/3] Add test where bazel is stored Signed-off-by: Ulrich Huber --- .github/actions/free_disk_space/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/free_disk_space/action.yml b/.github/actions/free_disk_space/action.yml index 539af15..c526136 100644 --- a/.github/actions/free_disk_space/action.yml +++ b/.github/actions/free_disk_space/action.yml @@ -21,6 +21,9 @@ branding: runs: using: composite steps: + - name: Which bazel + shell: bash + run: which bazel - name: Free Disk Space (Ubuntu) uses: endersonmenezes/free-disk-space@v3 with: From 579b514caa4a01a6207920061ff3ca55bf658d81 Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Fri, 27 Mar 2026 20:13:23 +0100 Subject: [PATCH 3/3] Leave node_modules setup-bazel is written with nodejs. Removing node_modules makes it silently fail. Signed-off-by: Ulrich Huber --- .github/actions/free_disk_space/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/free_disk_space/action.yml b/.github/actions/free_disk_space/action.yml index c526136..4feb638 100644 --- a/.github/actions/free_disk_space/action.yml +++ b/.github/actions/free_disk_space/action.yml @@ -32,5 +32,5 @@ runs: remove_haskell: true remove_tool_cache: true remove_swap: true - remove_folders: "/usr/share/swift /usr/share/miniconda /usr/share/az* /usr/local/lib/node_modules /usr/local/share/chromium /usr/local/share/powershell /usr/local/julia /usr/local/aws-cli /usr/local/aws-sam-cli /usr/share/gradle" + remove_folders: "/usr/share/swift /usr/share/miniconda /usr/share/az* /usr/local/share/chromium /usr/local/share/powershell /usr/local/julia /usr/local/aws-cli /usr/local/aws-sam-cli /usr/share/gradle" rm_cmd: "rmz"