From b055c6bc988706516e00c04dcff4a7f6d649ac5d Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Fri, 27 Feb 2026 12:52:37 +0100 Subject: [PATCH] checks/vms: update to newer disk image The current one is no longer available. This needs a better solution, but this is a quick fix to unblock the CI. --- checks/vms.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/checks/vms.nix b/checks/vms.nix index 23698dc..8ab9e42 100644 --- a/checks/vms.nix +++ b/checks/vms.nix @@ -10,10 +10,11 @@ testers, }: let - # The image must be a raw image + # The image must be a raw image. image = fetchurl { - url = "https://cloud-images.ubuntu.com/noble/20251113/noble-server-cloudimg-amd64.img"; - sha256 = "sha256-kOf6/3319QlDCJ31d4LA0diJOPhr2JUghnxZVf4mvIE="; + # TODO Find a permanently available image. Ubuntu removes these after a while. + url = "https://cloud-images.ubuntu.com/noble/20260225/noble-server-cloudimg-amd64.img"; + sha256 = "sha256-eqbZ9eijpVx0RbE40xpz0Rh4cSEbK32p2i4abL8WmyE="; }; imageRaw = runCommand "convert-RAW" { } '' ${lib.getExe' qemu-utils "qemu-img"} convert -O raw ${image} $out