summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-02-03 16:01:17 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-02-03 16:01:17 +0200
commita25e6e1d96b093bf0a5a996560312784c5d57408 (patch)
tree85aa3a22de2a9a770ccd6a12e55dfbc1a03f43ae
parentb994a6e6fffbb1775d18b4b4ad2770e37f8070a0 (diff)
downloadnixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar.gz
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar.bz2
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar.lz
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar.xz
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.tar.zst
nixlib-a25e6e1d96b093bf0a5a996560312784c5d57408.zip
go_1_8: Scale up test timeouts
https://hydra.nixos.org/build/68539514
-rw-r--r--pkgs/development/compilers/go/1.8.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/go/1.8.nix b/pkgs/development/compilers/go/1.8.nix
index 651eb79d75a7..ee71d2aabad6 100644
--- a/pkgs/development/compilers/go/1.8.nix
+++ b/pkgs/development/compilers/go/1.8.nix
@@ -134,6 +134,9 @@ stdenv.mkDerivation rec {
   CGO_ENABLED = 1;
   GOROOT_BOOTSTRAP = "${goBootstrap}/share/go";
 
+  # Hopefully avoids test timeouts on Hydra
+  GO_TEST_TIMEOUT_SCALE = 3;
+
   # The go build actually checks for CC=*/clang and does something different, so we don't
   # just want the generic `cc` here.
   CC = if stdenv.isDarwin then "clang" else "cc";