Kill builds that produce more than 64 MiB of log output

This commit is contained in:
Eelco Dolstra 2013-09-10 10:33:55 +00:00
parent 5078730cb5
commit 35aad40692

View file

@ -120,7 +120,9 @@ sub doBuild {
# associated log files, etc.
my $cmd = "nix-store --realise $drvPath " .
"--timeout $timeout " .
"--max-silent-time $maxsilent --keep-going --fallback " .
"--max-silent-time $maxsilent " .
"--option build-max-log-size 67108864 " .
"--keep-going --fallback " .
"--no-build-output --log-type flat --print-build-trace " .
"--add-root " . gcRootFor($outputs{out} // $outputs{(sort keys %outputs)[0]}) . " 2>&1";