Skip to content

Commit 3378a32

Browse files
ixhamzatonyhutter
authored andcommitted
CI: Fix FreeBSD 15.0 by staying on ALPHA4 due to broken ALPHA5 image
FreeBSD 15.0-ALPHA5 image fails to boot on cloud VMs due to missing /boot/efi mount point, causing the system to drop to single user mode where SSH cannot start. Work around this by staying on ALPHA4 and setting IGNORE_OSVERSION=yes to bypass pkg's kernel version mismatch prompt during bootstrap. This allows CI to proceed with ALPHA4 until we have a stable FreeBSD 15.0 image. Signed-off-by: Ameer Hamza <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Closes openzfs#17846
1 parent f16fa11 commit 3378a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/qemu-2-start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ else
294294
while pidof /usr/bin/qemu-system-x86_64 >/dev/null; do
295295
ssh 2>/dev/null root@vm0 "uname -a" && break
296296
done
297-
ssh root@vm0 "pkg install -y bash ca_root_nss git qemu-guest-agent python3 py311-cloud-init"
297+
ssh root@vm0 "env IGNORE_OSVERSION=yes pkg install -y bash ca_root_nss git qemu-guest-agent python3 py311-cloud-init"
298298
ssh root@vm0 "chsh -s $BASH root"
299299
ssh root@vm0 'sysrc qemu_guest_agent_enable="YES"'
300300
ssh root@vm0 'sysrc cloudinit_enable="YES"'

0 commit comments

Comments
 (0)