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 <schakrabarti@microsoft.com>
This commit is contained in:
Souradeep
2026-03-12 11:59:03 +00:00
committed by Rob Bradford
parent 0da63a4507
commit f1875668e0
2 changed files with 2 additions and 2 deletions

View File

@@ -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