From 55166505849c2258bf00c1755f60f11fac8e5a22 Mon Sep 17 00:00:00 2001 From: "Celina G. Val" Date: Wed, 23 Aug 2023 15:54:34 -0700 Subject: [PATCH] Don't error out if cleanup fails (#2708) Benchcomp CI is now broken due to #2704. The clean up we are performing is a best effort at this point, but it shouldn't fail the regression if it doesn't work. --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index d7b8b9b56149..489b0cbd4a17 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -18,7 +18,7 @@ runs: run: | # inspired by https://github.com/easimon/maximize-build-space/blob/master/action.yml df -h - sudo rm -r /usr/share/dotnet /usr/local/lib/android /usr/local/.ghcup + sudo rm -rf /usr/share/dotnet /usr/local/lib/android /usr/local/.ghcup df -h - name: Install dependencies