This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch wip-fix-system-tests
in repository guix.
The following commit(s) were added to refs/heads/wip-fix-system-tests by this
push:
new 32b86c0276 tests: install: Increase image size limit.
32b86c0276 is described below
commit 32b86c027618c127e69745ba3422d26409536090
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Sat Oct 18 10:55:49 2025 +0200
tests: install: Increase image size limit.
Increase the image size limit by 200MB, as those tests first role should be
to
indicate that installation works not that the base image is getting too big.
In the meantime, there are discussions ongoing on how to decrease the base
image size here: https://codeberg.org/guix/guix/issues/938.
Change-Id: I5ca62ce774c09e4433c48878e3d2b85fd14e6cf5
---
gnu/tests/install.scm | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index cb845c64cc..9fcc138dc6 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -170,7 +170,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts
guix build isc-dhcp
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
- mkpart primary ext2 3M 1.6G \\
+ mkpart primary ext2 3M 1.8G \\
set 1 boot on \\
set 1 bios_grub on
mkfs.ext4 -L my-root /dev/vdb2
@@ -195,7 +195,7 @@ guix --version
export GUIX_BUILD_OPTIONS=--no-grafts
guix build isc-dhcp
parted --script /dev/vdb mklabel gpt \\
- mkpart ext2 1M 1.6G \\
+ mkpart ext2 1M 1.8G \\
set 1 legacy_boot on
mkfs.ext4 -L my-root -O '^64bit' /dev/vdb1
mount /dev/vdb1 /mnt
@@ -466,7 +466,7 @@ export GUIX_BUILD_OPTIONS=--no-grafts
guix build isc-dhcp
parted --script /dev/vda mklabel gpt \\
mkpart primary ext2 1M 3M \\
- mkpart primary ext2 3M 1.6G \\
+ mkpart primary ext2 3M 1.8G \\
set 1 boot on \\
set 1 bios_grub on
mkfs.ext4 -L my-root /dev/vda2
@@ -678,8 +678,8 @@ guix --version
export GUIX_BUILD_OPTIONS=--no-grafts
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
- mkpart primary ext2 3M 1.6G \\
- mkpart primary ext2 1.6G 3.2G \\
+ mkpart primary ext2 3M 1.8G \\
+ mkpart primary ext2 1.8G 3.4G \\
set 1 boot on \\
set 1 bios_grub on
yes | mdadm --create /dev/md0 --verbose --level=mirror --raid-devices=2 \\
@@ -705,7 +705,7 @@ by 'mdadm'.")
%raid-root-os-source
#:script
%raid-root-installation-script
- #:target-size (* 3200 MiB)))
+ #:target-size (* 3600 MiB)))
(command (qemu-command* images)))
(run-basic-test %raid-root-os
`(,@command) "raid-root-os")))))
@@ -959,13 +959,13 @@ guix --version
export GUIX_BUILD_OPTIONS=--no-grafts
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
- mkpart primary ext2 3M 1.6G \\
- mkpart primary 1.6G 3.2G \\
+ mkpart primary ext2 3M 1.8G \\
+ mkpart primary 1.8G 3.4G \\
set 1 boot on \\
set 1 bios_grub on
pvcreate /dev/vdb3
vgcreate vg0 /dev/vdb3
-lvcreate -L 1.6G -n home vg0
+lvcreate -L 1.8G -n home vg0
vgchange -ay
mkfs.ext4 -L root-fs /dev/vdb2
mkfs.ext4 /dev/mapper/vg0-home
@@ -991,7 +991,7 @@ reboot\n")
#:script
%lvm-separate-home-installation-script
#:packages (list lvm2-static)
- #:target-size (* 3200 MiB)))
+ #:target-size (* 3600 MiB)))
(command (qemu-command* images)))
(run-basic-test %lvm-separate-home-os
`(,@command) "lvm-separate-home-os")))))
@@ -1238,7 +1238,7 @@ ls -l /run/current-system/gc-roots
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
mkpart primary ext2 3M 50M \\
- mkpart primary ext2 50M 1.6G \\
+ mkpart primary ext2 50M 1.8G \\
set 1 boot on \\
set 1 bios_grub on
echo -n \"~a\" | cryptsetup luksFormat -i 1 --uuid=\"~a\" -q /dev/vdb3 -
@@ -1278,7 +1278,7 @@ store a couple of full system images.")
#:script
%encrypted-root-not-boot-installation-script
#:target-size
- (* 1600 MiB)))
+ (* 1800 MiB)))
(command (qemu-command* images)))
(run-basic-test %encrypted-root-not-boot-os command
"encrypted-root-not-boot-os"