From f1875668e0f1cc2cda99ca54f8bb6c488ea65bdc Mon Sep 17 00:00:00 2001 From: Souradeep Date: Thu, 12 Mar 2026 11:59:03 +0000 Subject: [PATCH] scripts: Rename sha1sums-aarch64 to sha1sums-aarch64-common Rename the aarch64 sha1sums file to sha1sums-aarch64-common to follow the same naming convention as sha1sums-x86_64-common. This allows run_metrics.sh to use the generic sha1sums-${TEST_ARCH}-common pattern for all architectures, removing the need for aarch64-specific conditionals. Update run_integration_tests_aarch64.sh to reference the renamed file. Signed-off-by: Souradeep --- scripts/run_integration_tests_aarch64.sh | 4 ++-- scripts/{sha1sums-aarch64 => sha1sums-aarch64-common} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{sha1sums-aarch64 => sha1sums-aarch64-common} (100%) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index 68500028b..2489d7892 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -26,7 +26,7 @@ build_virtiofsd() { } update_workloads() { - cp scripts/sha1sums-aarch64 "$WORKLOADS_DIR" + cp scripts/sha1sums-aarch64-common "$WORKLOADS_DIR" FOCAL_OS_RAW_IMAGE_NAME="focal-server-cloudimg-arm64-custom-20210929-0.raw" FOCAL_OS_RAW_IMAGE_DOWNLOAD_URL="https://ch-images.azureedge.net/$FOCAL_OS_RAW_IMAGE_NAME" @@ -138,7 +138,7 @@ update_workloads() { pushd "$WORKLOADS_DIR" || exit - if ! sha1sum sha1sums-aarch64 --check; then + if ! sha1sum sha1sums-aarch64-common --check; then echo "sha1sum validation of images failed, remove invalid images to fix the issue." exit 1 fi diff --git a/scripts/sha1sums-aarch64 b/scripts/sha1sums-aarch64-common similarity index 100% rename from scripts/sha1sums-aarch64 rename to scripts/sha1sums-aarch64-common