From 162456c5b6f66cf949faaff2de69d8e00a29cb38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Tue, 3 May 2022 21:21:23 +0200 Subject: [PATCH] CI: Set specific coverage key for dependencies --- .github/workflows/coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c78830fc6..c9afb01c1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -77,7 +77,7 @@ jobs: uses: actions/cache@v3 with: path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages - key: Linux-${{ matrix.config.arch }}-debug-${{ steps.dep_hash.outputs.hash }}-W${{ steps.pkg_key.outputs.key }} + key: Linux-${{ matrix.config.arch }}-coverage-${{ steps.dep_hash.outputs.hash }}-W${{ steps.pkg_key.outputs.key }} # Cache xmake dependencies - name: Retrieve cached xmake dependencies (Windows) @@ -85,7 +85,7 @@ jobs: uses: actions/cache@v3 with: path: ${{ env.XMAKE_GLOBALDIR }}\.xmake\packages - key: MSVC-${{ matrix.config.arch }}-releasedbg-${{ steps.dep_hash.outputs.hash }}-W${{ steps.pkg_key.outputs.key }} + key: MSVC-${{ matrix.config.arch }}-coverage-${{ steps.dep_hash.outputs.hash }}-W${{ steps.pkg_key.outputs.key }} # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies