* Cut off builds after half an hour of apparent inactivity. This
should really be configurable.
This commit is contained in:
parent
d875d2b736
commit
7231556f47
|
@ -36,7 +36,7 @@ sub doBuild {
|
||||||
# Run Nix to perform the build, and monitor the stderr output
|
# Run Nix to perform the build, and monitor the stderr output
|
||||||
# to get notifications about specific build steps, the
|
# to get notifications about specific build steps, the
|
||||||
# associated log files, etc.
|
# 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";
|
"--log-type flat --print-build-trace --realise $drvPath 2>&1";
|
||||||
|
|
||||||
my $buildStepNr = 1;
|
my $buildStepNr = 1;
|
||||||
|
|
Loading…
Reference in a new issue