forked from lix-project/hydra
Bump evaluation timeout to 6 hours
This is necessary given the current size of the Nixpkgs/NixOS jobsets. Once we have a Nix store + Postgres on SSD, we can reduce this again. Should really make this configurable...
This commit is contained in:
parent
0ca6bb79af
commit
f11ce7e219
|
@ -346,7 +346,7 @@ sub evalJobs {
|
|||
print STDERR "evaluator: @escaped\n";
|
||||
}
|
||||
|
||||
(my $res, my $jobsJSON, my $stderr) = captureStdoutStderr(10800, @cmd);
|
||||
(my $res, my $jobsJSON, my $stderr) = captureStdoutStderr(21600, @cmd);
|
||||
die "$evaluator returned " . ($res & 127 ? "signal $res" : "exit code " . ($res >> 8))
|
||||
. ":\n" . ($stderr ? decode("utf-8", $stderr) : "(no output)\n")
|
||||
if $res;
|
||||
|
|
Loading…
Reference in a new issue