* Cut off builds after half an hour of apparent inactivity. This

should really be configurable.
This commit is contained in:
Eelco Dolstra 2008-12-16 10:42:37 +00:00
parent d875d2b736
commit 7231556f47

View file

@ -36,7 +36,7 @@ sub doBuild {
# Run Nix to perform the build, and monitor the stderr output
# to get notifications about specific build steps, the
# associated log files, etc.
my $cmd = "nix-store --keep-going --no-build-output " .
my $cmd = "nix-store --max-silent-time 1800 --keep-going --no-build-output " .
"--log-type flat --print-build-trace --realise $drvPath 2>&1";
my $buildStepNr = 1;