haskell.compiler.ghcHEAD: increase Hydra timeout because Darwin builds were timing out

Building `haskell.compiler.ghcHEAD` on Hydra on Darwin seemed to cause
frequent timeouts.

Here's an example of a timeout: https://hydra.nixos.org/build/149762652

This commit raises the timeout time on Hydra for ghcHEAD.  The other
GHC derivations have this set, so it makes sense to set this here
as well.
This commit is contained in:
(cdep)illabout 2021-08-11 13:21:02 +09:00
parent c84e14dc3e
commit 2d1b5aa1fe
No known key found for this signature in database
GPG Key ID: 462E0C03D11422F4

View File

@ -311,6 +311,7 @@ stdenv.mkDerivation (rec {
homepage = "http://haskell.org/ghc";
description = "The Glasgow Haskell Compiler";
maintainers = with lib.maintainers; [ marcweber andres peti ];
timeout = 24 * 3600;
inherit (ghc.meta) license platforms;
# ghcHEAD times out on aarch64-linux on Hydra.
hydraPlatforms = builtins.filter (p: p != "aarch64-linux") ghc.meta.platforms;