From 4661cc13c505f1184a16d40f8fda7346db01f059 Mon Sep 17 00:00:00 2001 From: Eike Waldt Date: Tue, 26 Aug 2025 14:25:57 +0200 Subject: [PATCH] always add raw image file to artifacts for tests in QEMU VM --- builder/make_list_build_artifacts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builder/make_list_build_artifacts b/builder/make_list_build_artifacts index 5b2a7a2..752fbbb 100755 --- a/builder/make_list_build_artifacts +++ b/builder/make_list_build_artifacts @@ -18,7 +18,8 @@ for feature in "${features[@]}"; do done done -if [ "${#artifacts[@]}" = 4 ] && [ -n "$(./parse_features --feature-dir "features" --cname "$cname" platforms)" ]; then +# always add raw image file to artifacts for tests in QEMU VM +if [ -n "$(./parse_features --feature-dir "features" --cname "$cname" platforms)" ]; then artifacts+=(".build/$cname-$COMMIT.raw") fi