dashboard: increase TIMEOUT_SCALE to 2 for linux-amd64-longtest

runtime tests take about 180s in long mode, too close to the timeout
limit (180 seconds), and this is causing sporadic timeout failures
like

  https://build.golang.org/log/cda568a39f396e3fee64778a475528be452632ed

Bump up the builder's timeout by 2x.

Fixes golang/go#25629

Change-Id: I77e0f86f0b236cb953457ebdcbfc5763c2c6d54b
Reviewed-on: https://go-review.googlesource.com/115016
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index 9ca90a6..5fc1512 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -1090,7 +1090,12 @@
 		HostType:  "host-linux-stretch",
 		MaxAtOnce: 1,
 		Notes:     "Debian Stretch with go test -short=false",
-		env:       []string{"GO_TEST_SHORT=0"},
+		env: []string{
+			"GO_TEST_SHORT=0",
+			// runtime takes ~190 seconds in long mode, which is over
+			// the 180 seconds default timeout.
+			"GO_TEST_TIMEOUT_SCALE=2",
+		},
 	})
 	addBuilder(BuildConfig{
 		Name:              "linux-arm",