From 52f9c3387482f7832cb8a26f280f46982849f97d Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 23 Feb 2023 17:41:21 +0000 Subject: [PATCH] CI: Separate CCache cache for Pico/PicoW. --- .github/workflows/cmake.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6de6290d..76bc2567 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -28,8 +28,9 @@ jobs: uses: actions/cache@v3 with: path: /home/runner/.ccache - key: ccache-cmake-${{github.ref}}-${{github.sha}} + key: ccache-cmake-${{github.ref}}-${{matrix.board}}-${{github.sha}} restore-keys: | + ccache-cmake-${{github.ref}}-${{matrix.board}} ccache-cmake-${{github.ref}} ccache-cmake