From 2d1b5aa1fe72ef401a91e2e8408a939be5c1b238 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Wed, 11 Aug 2021 13:21:02 +0900 Subject: [PATCH] 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. --- pkgs/development/compilers/ghc/head.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 685497b3037a..35c0bd76214d 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -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;