From d68b0572929b09ac562cca58c09fb394946c8148 Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Mon, 15 Jul 2024 19:33:55 +0200 Subject: [PATCH] CI: really working ccache? --- .github/workflows/ficus.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ficus.yml b/.github/workflows/ficus.yml index 4e4a8b2d2..818325560 100644 --- a/.github/workflows/ficus.yml +++ b/.github/workflows/ficus.yml @@ -33,12 +33,14 @@ jobs: key: ${{ runner.os }}-ccache - name: Add ccache to path - run: echo "/usr/lib/ccache" >> $GITHUB_PATH + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - name: Print ccache info run: | ccache -p which gcc + which g++ - name: Cache generic toolchain id: cache-toolchain