From c98b87720e4dfade259a345d8672cd57f17ab600 Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Mon, 1 Sep 2025 13:01:47 +0200 Subject: [PATCH] test/scripts/boot-image: skip boot for non-x86_64 azure vhds Booting aarch64 isn't supported yet. --- test/scripts/boot-image | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/scripts/boot-image b/test/scripts/boot-image index 536b8e9065..98c4de049e 100755 --- a/test/scripts/boot-image +++ b/test/scripts/boot-image @@ -212,7 +212,11 @@ def main(): case "ami" | "ec2" | "ec2-ha" | "ec2-sap" | "edge-ami": boot_ami(distro, arch, image_type, image_path, build_config_path) case "vhd": - boot_vhd(distro, arch, image_path, build_config_path) + if arch == "x86_64": + boot_vhd(distro, arch, image_path, build_config_path) + else: + print(f"{image_type} boot tests on {arch} are not supported yet") + return case "iot-bootable-container": manifest_id = build_info["manifest-checksum"] boot_container(distro, arch, image_type, image_path, manifest_id)