summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-01-18 11:45:48 +0100
committerVladimír Čunát <v@cunat.cz>2023-01-18 11:45:48 +0100
commit2b988c76fd3b6f1f1117b419a83589fb7cea14bf (patch)
treee0c7bae6b87620fc9189c549893060d151a45c7d /nixos/tests/installer.nix
parent312e9042ebc6966fc482e796faaa3e6462c14e4f (diff)
downloadnixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar.gz
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar.bz2
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar.lz
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar.xz
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.tar.zst
nixpkgs-2b988c76fd3b6f1f1117b419a83589fb7cea14bf.zip
Revert "nixosTests.installer: bump memorySize"
This reverts commit 309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.
The bump caused nixosTests.installer.luksroot hang, e.g. see
https://hydra.nixos.org/build/205951019
(I don't know why.)

The OOM issues were avoided by 6dccdc45851 (newer but merged earlier)
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index f5455267b28..3adfa979edc 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -308,7 +308,7 @@ let
           # builds stuff in the VM, needs more juice
           virtualisation.diskSize = 8 * 1024;
           virtualisation.cores = 8;
-          virtualisation.memorySize = 2047;
+          virtualisation.memorySize = 1536;
 
           boot.initrd.systemd.enable = systemdStage1;