[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65002] [PATCH v3 5/6] tests: install: Fix encrypted-root-os test.
|
From: |
Tomas Volf |
|
Subject: |
[bug#65002] [PATCH v3 5/6] tests: install: Fix encrypted-root-os test. |
|
Date: |
Thu, 11 Jan 2024 18:35:43 +0100 |
The installation no longer fits into the 1.6G, leading to a warning while
running the test:
guix system: warning: at least 1526.8 MB needed but only 1408.4 MB
available in /mnt
Followed by a failure:
93% [####################################################################
]note: build failure may have been caused by lack of free disk space
builder for
`/gnu/store/8wl8q8nc1za0vlyv21jpzwgml45njgk2-module-import-compiled.drv' failed
with exit code 1
This commit increases the root partition to 2G, making the test pass again.
* gnu/tests/install.scm (%encrypted-root-installation-script): Increase the
root partition to 2G.
Change-Id: I4cc5c78cfbd93ab2ae92ec77603ce6fee0289843
---
gnu/tests/install.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index c5243f2ed9..f553eeaa3e 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -751,7 +751,7 @@ (define %encrypted-root-installation-script
ls -l /run/current-system/gc-roots
parted --script /dev/vdb mklabel gpt \\
mkpart primary ext2 1M 3M \\
- mkpart primary ext2 3M 1.6G \\
+ mkpart primary ext2 3M 2G \\
set 1 boot on \\
set 1 bios_grub on
echo -n " %luks-passphrase " | \\
--
2.41.0
- [bug#65002] [PATCH v3 1/6] mapped-devices: Allow unlocking by a key file., Tomas Volf, 2024/01/11
- [bug#65002] [PATCH v3 2/6] gnu: bootloader: grub: Add support for loading an additional initrd., Tomas Volf, 2024/01/11
- [bug#65002] [PATCH v3 3/6] tests: Add `encrypted-home-os-key-file' installation test., Tomas Volf, 2024/01/11
- [bug#65002] [PATCH v3 4/6] tests: install: Use the smallest possible iteration time for LUKS., Tomas Volf, 2024/01/11
- [bug#65002] [PATCH v3 6/6] tests: install: Fix encrypted-home-os, encrypted-home-os-key-file tests., Tomas Volf, 2024/01/11
- [bug#65002] [PATCH v3 5/6] tests: install: Fix encrypted-root-os test.,
Tomas Volf <=
- bug#65002: [PATCH v3 1/6] mapped-devices: Allow unlocking by a key file., Ludovic Courtès, 2024/01/14