Fix RPM builds by increasing VM memory size

The VM was running out of RAM while handling debug symbols, which caused the
eu-strip to fail while separating debug symbols.
This commit is contained in:
Benjamin Hipple 2018-01-02 23:39:42 -05:00
parent e297aa7b1c
commit 4cb5c51375
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ let
{ extraPackages =
[ "sqlite" "sqlite-devel" "bzip2-devel" "libcurl-devel" "openssl-devel" "xz-devel" "libseccomp-devel" ]
++ extraPackages; };
memSize = 1024;
memSize = 2048;
meta.schedulingPriority = 50;
postRPMInstall = "cd /tmp/rpmout/BUILD/nix-* && make installcheck";
#enableParallelBuilding = true;