From 30e149143b38147802735d6baa8cf13abf7860f2 Mon Sep 17 00:00:00 2001 From: Ben Howe Date: Tue, 14 Jan 2025 05:14:48 +0000 Subject: [PATCH] More get-cudaq-build updates (ccache-cudaq) Signed-off-by: Ben Howe --- .github/actions/get-cudaq-build/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/get-cudaq-build/action.yaml b/.github/actions/get-cudaq-build/action.yaml index 1a28cf2..790e3e2 100644 --- a/.github/actions/get-cudaq-build/action.yaml +++ b/.github/actions/get-cudaq-build/action.yaml @@ -117,7 +117,7 @@ runs: with: fail-on-cache-miss: false path: /cudaq-ccache - key: ccache-cudaq + key: ccache-cudaq-${{ inputs.platform }} - name: Install CUDAQ build requirements if: steps.check-cache.outputs.valid == 'false' && inputs.lookup-only == 'false' @@ -147,7 +147,7 @@ runs: env: GH_TOKEN: ${{ github.token }} run: | - gh cache delete ccache-cudaq --repo ${{ github.repository }} + gh cache delete ccache-cudaq-${{ inputs.platform }} --repo ${{ github.repository }} shell: bash --noprofile --norc -euo pipefail {0} - name: Store compilation (CCache) @@ -155,7 +155,7 @@ runs: uses: actions/cache/save@v4 with: path: /cudaq-ccache - key: ccache-cudaq + key: ccache-cudaq-${{ inputs.platform }} # ==========================================================================