From af19d818069aaea6b4fe1bd130b09d7c5748c054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Tue, 11 Apr 2023 09:50:00 +0200 Subject: [PATCH] Include build type in ccache key This should lead to better cache utilisation, smaller caches --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97928141c..19b1b4e78 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1 if: runner.os == 'Linux' with: - key: ${{ matrix.os }}-${{ matrix.enable_ui }} + key: ${{ matrix.os }}-${{ matrix.enable_ui }}-${{ matrix.build_type }} - uses: turtlesec-no/get-ninja@main - uses: ilammy/msvc-dev-cmd@v1 if: runner.os == 'Windows'