Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/spacemit3.6-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Cache RV toolchain
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-rv-toolchain
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: toolchain
key: rv-toolchain-${{ env.RISCV_TOOLCHAIN_MD5 }}
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Cache LLVM
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-llvm
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: llvm_installed
key: llvm-${{ env.LLVM_MD5 }}
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Cache spine-mlir
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-spine-mlir
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: spine_mlir_installed
key: spine-mlir-${{ env.SPINE_MLIR_MD5 }}
Expand All @@ -98,7 +98,7 @@ jobs:
- name: Cache spine-runtime
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-spine-runtime
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: spine_runtime_installed
key: spine-runtime-${{ env.SPINE_RUNTIME_MD5 }}
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Cache RPC runtime
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-rpc-runtime
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: rpc_runtime_installed
key: rpc-runtime-${{ env.RPC_RUNTIME_MD5 }}
Expand All @@ -130,7 +130,7 @@ jobs:
- name: Cache jdsk-qemu
if: steps.check_backend.outputs.should_skip != 'true'
id: cache-qemu
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: jdsk-qemu
key: jdsk-qemu-${{ env.JDSK_QEMU_MD5 }}
Expand Down
Loading