Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit b3e25dc

Browse files
committed
[chore] Try to add image with LTP testcases
1 parent 219c44d commit b3e25dc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/actions/setup-testcases/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ runs:
1717
id: cache-testcases
1818
uses: actions/cache/restore@v4
1919
with:
20-
path: ${{ inputs.arch }}-testcases
21-
key: ${{ inputs.arch }}-testcases
20+
path: sdcard-${{ inputs.arch }}.img.gz
21+
key: sdcard-${{ inputs.arch }}.img.gz
2222
- name: Download testcases
2323
if: steps.cache-testcases.outputs.cache-hit != 'true'
2424
shell: bash
@@ -28,5 +28,5 @@ runs:
2828
- uses: actions/cache/save@v4
2929
if: steps.cache-testcases.outputs.cache-hit != 'true'
3030
with:
31-
path: ${{ inputs.arch }}-testcases
32-
key: ${{ inputs.arch }}-testcases
31+
path: sdcard-${{ inputs.arch }}.img.gz
32+
key: sdcard-${{ inputs.arch }}.img.gz

scripts/oscomp_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ testcases_type=(
7777
"libctest"
7878
)
7979

80-
IMG_URL=https://github.com/Azure-stars/testsuits-for-oskernel/releases/download/v0.1/sdcard-$ARCH.img.gz
80+
IMG_URL=https://github.com/Azure-stars/testsuits-for-oskernel/releases/download/v0.2/sdcard-$ARCH.img.gz
8181
if [ ! -f sdcard-$ARCH.img ]; then
8282
echo -e "${CYAN_C}Downloading${END_C} $IMG_URL"
8383
wget -q $IMG_URL

0 commit comments

Comments
 (0)