From c8d7138ad7628feaf5aa9ef5eb5ade810a1f1a31 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 8 May 2021 19:10:59 +0200 Subject: [PATCH] ci: `os` and `lib` added as cache keys for ccache action --- .github/workflows/ci-conan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 24c63b15..9333d97e 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -81,7 +81,7 @@ jobs: - uses: hendrikmuhs/ccache-action@v1 if: runner.os == 'Linux' with: - key: ${{ matrix.config.compiler.type }}-${{ matrix.config.compiler.version }}-${{ matrix.build_type }} + key: ${{ matrix.config.os }}-${{ matrix.config.compiler.type }}-${{ matrix.config.compiler.version }}-${{ matrix.config.lib }}-${{ matrix.build_type }} max-size: 100M - name: Install Clang if: matrix.config.compiler.type == 'CLANG'