summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-01-10 18:45:34 +0200
committerArtturin <Artturin@artturin.com>2023-01-10 18:45:34 +0200
commit309ed272be60962e4465ae7b8cd2bb5cb1bc4bee (patch)
tree2356005b4f73826b92c25b6386e471302e9a8c39 /nixos/tests/installer.nix
parentdf5d6a371ae1488b55795645afd172c1a5281f7c (diff)
downloadnixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar.gz
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar.bz2
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar.lz
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar.xz
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.tar.zst
nixpkgs-309ed272be60962e4465ae7b8cd2bb5cb1bc4bee.zip
nixosTests.installer: bump memorySize
Without it the tests sometimes fail because the OOM killer is triggered.
https://hydra.nixos.org/build/204713462
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 398ad8de19c..300f6602789 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -291,7 +291,7 @@ let
           # builds stuff in the VM, needs more juice
           virtualisation.diskSize = 8 * 1024;
           virtualisation.cores = 8;
-          virtualisation.memorySize = 1536;
+          virtualisation.memorySize = 2047;
 
           boot.initrd.systemd.enable = systemdStage1;