From 54994ac39a735cad4cbf46b425419412c16914e5 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 10 May 2023 18:02:03 +0900 Subject: [PATCH] .github/workflows/build_wamr_lldb.yml: use a bit more specific cache key the current key looks like "x86_64-ubuntu-20.04-lldb_build". it's a way too generic and can even hit the cache from the previous releases. this commit makes it contain the WAMR version number. --- .github/workflows/build_wamr_lldb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wamr_lldb.yml b/.github/workflows/build_wamr_lldb.yml index ba491ad3ad..c65ec2b015 100644 --- a/.github/workflows/build_wamr_lldb.yml +++ b/.github/workflows/build_wamr_lldb.yml @@ -51,7 +51,7 @@ jobs: ./core/deps/llvm-project/build/share ./core/deps/llvm-project/lldb/tools/ ./core/deps/llvm-project/wamr-lldb/ - key: ${{inputs.arch}}-${{ inputs.runner }}-lldb_build + key: ${{ inputs.ver_num }}-${{ inputs.arch }}-${{ inputs.runner }}-lldb_build - name: setup xcode macos if: steps.lldb_build_cache.outputs.cache-hit != 'true' && contains(inputs.runner, 'macos')