|
|
@@ -85,13 +85,13 @@ jobs:
|
|
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
# since jobs.id can't contain the dot character
|
|
|
# it is hard to use `format` to assemble the cache key
|
|
|
- name: Get LLVM libraries
|
|
|
id: retrieve_llvm_libs
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: |
|
|
|
./core/deps/llvm/build/bin
|
|
|
@@ -214,13 +214,13 @@ jobs:
|
|
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
# only download llvm cache when needed
|
|
|
- name: Get LLVM libraries
|
|
|
id: retrieve_llvm_libs
|
|
|
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: |
|
|
|
./core/deps/llvm/build/bin
|
|
|
@@ -285,12 +285,12 @@ jobs:
|
|
|
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
- name: Get LLVM libraries
|
|
|
id: retrieve_llvm_libs
|
|
|
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: |
|
|
|
./core/deps/llvm/build/bin
|
|
|
@@ -351,7 +351,7 @@ jobs:
|
|
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
- name: download and install wasi-sdk
|
|
|
run: |
|
|
|
@@ -368,7 +368,7 @@ jobs:
|
|
|
sudo mv wabt-1.0.31 wabt
|
|
|
- name: Get LLVM libraries
|
|
|
id: retrieve_llvm_libs
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: |
|
|
|
./core/deps/llvm/build/bin
|
|
|
@@ -520,7 +520,7 @@ jobs:
|
|
|
test_option: $SIMD_TEST_OPTIONS
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
- name: download and install wasi-sdk
|
|
|
if: matrix.test_option == '$WASI_TEST_OPTIONS'
|
|
|
@@ -555,7 +555,7 @@ jobs:
|
|
|
- name: Get LLVM libraries
|
|
|
if: env.USE_LLVM == 'true'
|
|
|
id: retrieve_llvm_libs
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
with:
|
|
|
path: |
|
|
|
./core/deps/llvm/build/bin
|
|
|
@@ -617,7 +617,7 @@ jobs:
|
|
|
|
|
|
steps:
|
|
|
- name: checkout
|
|
|
- uses: actions/checkout@v3
|
|
|
+ uses: actions/checkout@v4
|
|
|
|
|
|
- name: install dependencies
|
|
|
run: |
|
|
|
@@ -636,7 +636,7 @@ jobs:
|
|
|
|
|
|
- name: Cache LLDB
|
|
|
id: cache-lldb
|
|
|
- uses: actions/cache@v3
|
|
|
+ uses: actions/cache@v4
|
|
|
env:
|
|
|
cache-name: cache-lldb-vscode
|
|
|
with:
|