From e2a1af73fa33c127c392299cc81c43d370bd3efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 8 Oct 2023 08:19:29 +0200 Subject: [PATCH] Use own ccache-action, clean up --- .github/workflows/install/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install/action.yml b/.github/workflows/install/action.yml index 896d69f21..cf83bdbf3 100644 --- a/.github/workflows/install/action.yml +++ b/.github/workflows/install/action.yml @@ -85,7 +85,7 @@ runs: shell: bash - name: Install ccache - uses: hendrikmuhs/ccache-action@v1.2.10 + uses: krlmlr/ccache-action@parallel-dir with: max-size: 10G verbose: 1 @@ -110,4 +110,8 @@ runs: # mkdir -p $(dirname $(pwd))/.ccache-debug echo 'PKG_BUILD_EXTRA_FLAGS=false' | tee -a $GITHUB_ENV + + # Repair + git rm -rf .ccache || true + rm -rf .ccache shell: bash