From 883770bf32eb695d8f06f5edc7fd7b8fb3608c7a Mon Sep 17 00:00:00 2001 From: smit-gardhariya Date: Fri, 8 Nov 2024 11:53:46 +0530 Subject: [PATCH] tests: Update jammy image version Use updated jammy image for integrtaion tests Signed-off-by: Smit Gardhariya --- scripts/run_integration_tests_x86_64.sh | 4 ++-- scripts/sha1sums-x86_64 | 4 ++-- tests/integration.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/run_integration_tests_x86_64.sh b/scripts/run_integration_tests_x86_64.sh index 22a1c758e3..0da7023e63 100755 --- a/scripts/run_integration_tests_x86_64.sh +++ b/scripts/run_integration_tests_x86_64.sh @@ -49,7 +49,7 @@ if [ ! -f "$FOCAL_OS_QCOW_BACKING_FILE_IMAGE" ]; then popd || exit fi -JAMMY_OS_IMAGE_NAME="jammy-server-cloudimg-amd64-custom-20241017-0.qcow2" +JAMMY_OS_IMAGE_NAME="jammy-server-cloudimg-amd64-custom-20241108-0.qcow2" JAMMY_OS_IMAGE_URL="https://ch-images.azureedge.net/$JAMMY_OS_IMAGE_NAME" JAMMY_OS_IMAGE="$WORKLOADS_DIR/$JAMMY_OS_IMAGE_NAME" if [ ! -f "$JAMMY_OS_IMAGE" ]; then @@ -58,7 +58,7 @@ if [ ! -f "$JAMMY_OS_IMAGE" ]; then popd || exit fi -JAMMY_OS_RAW_IMAGE_NAME="jammy-server-cloudimg-amd64-custom-20241017-0.raw" +JAMMY_OS_RAW_IMAGE_NAME="jammy-server-cloudimg-amd64-custom-20241108-0.raw" JAMMY_OS_RAW_IMAGE="$WORKLOADS_DIR/$JAMMY_OS_RAW_IMAGE_NAME" if [ ! -f "$JAMMY_OS_RAW_IMAGE" ]; then pushd "$WORKLOADS_DIR" || exit diff --git a/scripts/sha1sums-x86_64 b/scripts/sha1sums-x86_64 index 7fd5c56d87..7d1caf8b60 100644 --- a/scripts/sha1sums-x86_64 +++ b/scripts/sha1sums-x86_64 @@ -1,5 +1,5 @@ d4a44acc6014d5f83dea1c625c43d677a95fa75f alpine-minirootfs-x86_64.tar.gz f1eccdc5e1b515dbad294426ab081b47ebfb97c0 focal-server-cloudimg-amd64-custom-20210609-0.qcow2 7f5a8358243a96adf61f5c20139b29f308f2c0e3 focal-server-cloudimg-amd64-custom-20210609-0.raw -5f10738920efb74f0bf854cadcd1b1fd544e49c8 jammy-server-cloudimg-amd64-custom-20241017-0.qcow2 -c1dfbe7abde400e675844568dbe9d3914222f6de jammy-server-cloudimg-amd64-custom-20241017-0.raw +f228942875b687137fd22972937aaeda51cd7c4d jammy-server-cloudimg-amd64-custom-20241108-0.qcow2 +c7cb5efbd2b00d8b6b7e2ba9c52f8ca7495a08ca jammy-server-cloudimg-amd64-custom-20241108-0.raw diff --git a/tests/integration.rs b/tests/integration.rs index 7ea98bbe5c..0264638493 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -39,7 +39,7 @@ mod x86_64 { "focal-server-cloudimg-amd64-custom-20210609-0-backing.qcow2"; pub const FOCAL_IMAGE_NAME_VHD: &str = "focal-server-cloudimg-amd64-custom-20210609-0.vhd"; pub const FOCAL_IMAGE_NAME_VHDX: &str = "focal-server-cloudimg-amd64-custom-20210609-0.vhdx"; - pub const JAMMY_IMAGE_NAME: &str = "jammy-server-cloudimg-amd64-custom-20241017-0.raw"; + pub const JAMMY_IMAGE_NAME: &str = "jammy-server-cloudimg-amd64-custom-20241108-0.raw"; pub const WINDOWS_IMAGE_NAME: &str = "windows-server-2022-amd64-2.raw"; pub const OVMF_NAME: &str = "CLOUDHV.fd"; pub const GREP_SERIAL_IRQ_CMD: &str = "grep -c 'IO-APIC.*ttyS0' /proc/interrupts || true";