buildMozillaMach: increase hydra timeout to 1d on darwin (#482486)
This commit is contained in:
@@ -293,7 +293,14 @@ buildStdenv.mkDerivation {
|
||||
pname = "${pname}-unwrapped";
|
||||
version = packageVersion;
|
||||
|
||||
inherit src unpackPhase meta;
|
||||
inherit src unpackPhase;
|
||||
|
||||
meta =
|
||||
meta
|
||||
// lib.optionalAttrs stdenv.hostPlatform.isDarwin {
|
||||
# MacOS builds may take a long time and sometimes hit the default timeout
|
||||
timeout = lib.max (24 * 60 * 60) (meta.timeout or 0);
|
||||
};
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
|
||||
Reference in New Issue
Block a user