go_1_8: Scale up test timeouts

https://hydra.nixos.org/build/68539514
This commit is contained in:
Tuomas Tynkkynen 2018-02-03 16:01:17 +02:00
parent b994a6e6ff
commit a25e6e1d96

View file

@ -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";