Skip to content

Commit

Permalink
.github/workflows/build_wamr_lldb.yml: use a bit more specific cache key
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
yamt committed May 10, 2023
1 parent ff0752b commit 54994ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_wamr_lldb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 54994ac

Please sign in to comment.