From 20f5cadb6f4eff4e57b8ae5a1091468eb96236ff Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 15 Feb 2026 10:55:07 +0100 Subject: [PATCH] scripts: Fix run_metrics.sh to use sha1sums common file The focal image checksums have been moved in the -common sha1sums file. Use the correct file for metrics. Signed-off-by: Anatol Belski --- scripts/run_metrics.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_metrics.sh b/scripts/run_metrics.sh index 8feeeecb7..f70ccf1cd 100755 --- a/scripts/run_metrics.sh +++ b/scripts/run_metrics.sh @@ -28,7 +28,7 @@ build_fio() { process_common_args "$@" -cp scripts/sha1sums-"${TEST_ARCH}" "$WORKLOADS_DIR" +cp scripts/sha1sums-"${TEST_ARCH}"-common "$WORKLOADS_DIR" if [ "${TEST_ARCH}" == "aarch64" ]; then FOCAL_OS_IMAGE_NAME="focal-server-cloudimg-arm64-custom-20210929-0.qcow2" @@ -58,7 +58,7 @@ if [ ! -f "$FOCAL_OS_RAW_IMAGE" ]; then fi pushd "$WORKLOADS_DIR" || exit -if ! grep focal sha1sums-"${TEST_ARCH}" | sha1sum --check; then +if ! grep focal sha1sums-"${TEST_ARCH}"-common | sha1sum --check; then echo "sha1sum validation of images failed, remove invalid images to fix the issue." exit 1 fi