Skip to content

Commit ff78bcc

Browse files
committed
DO NOT MERGE
Since the pull request has not been finalized yet, the corresponding 'Image' and 'ext4.img' have not been uploaded to the blob. Therefore, this commit is added to allow the CI tests to run. In addition, due to GitHub Actions caching behavior, we found that the 'Image' must be deleted and re-downloaded during testing for the new 'Image' to take effect. To address this, this commit adds an extra step in the script to remove the 'Image' and download it again. This commit will be removed once the code review is completed.
1 parent da0a2b9 commit ff78bcc

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.ci/test-vgpu.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ echo "Decompressing ext4.img.bz2 for DirectFB testing..."
3434
rm -f ext4.img
3535
bunzip2 -kf ext4.img.bz2
3636

37+
# Force fresh download of Image and rootfs.cpio to avoid stale cache
38+
rm -f Image rootfs.cpio
39+
make Image rootfs.cpio
40+
3741
# NOTE: We want to capture the expect exit code and map
3842
# it to our MESSAGES array for meaningful error output.
3943
# Temporarily disable errexit for the expect call.

.ci/test-vinput.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ esac
1515
cleanup
1616
trap cleanup EXIT
1717

18+
# Force fresh download of Image and rootfs.cpio to avoid stale cache
19+
rm -f Image rootfs.cpio
20+
make Image rootfs.cpio
21+
1822
# NOTE: We want to capture the expect exit code and map
1923
# it to our MESSAGES array for meaningful error output.
2024
# Temporarily disable errexit for the expect call.

mk/external.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# _DATA : the file to be read by specific executable.
44
# _DATA_SHA1 : the checksum of the content in _DATA
55

6-
COMMON_URL = https://github.com/sysprog21/semu/raw/blob
6+
COMMON_URL = https://github.com/Mes0903/semu/raw/blob
77

88
# kernel
99
KERNEL_DATA_URL = $(COMMON_URL)/Image.bz2
1010
KERNEL_DATA = Image
11-
KERNEL_DATA_SHA1 = 3c0dcfbae504444a7decfaed97b31cbf3dfa2fef
11+
KERNEL_DATA_SHA1 = 0666dbb915cdb2275c73183caa45524b57e5ea7d
1212

1313
# initrd
1414
INITRD_DATA_URL = $(COMMON_URL)/rootfs.cpio.bz2

0 commit comments

Comments
 (0)