We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff6814 commit 4f56be6Copy full SHA for 4f56be6
dashboard/builders.go
@@ -2679,6 +2679,16 @@ func init() {
2679
HostType: "host-darwin-amd64-12-aws",
2680
distTestAdjust: macTestPolicy,
2681
buildsRepo: onlyGo,
2682
+ env: []string{
2683
+ // Increase the timeout scale for this builder: it was observed to be
2684
+ // timing out frequently in
2685
+ // https://go.dev/issue/55311#issuecomment-1571986012.
2686
+ ///
2687
+ // TODO(bcmills): The darwin-amd64-longtest builder was running extremely
2688
+ // slowly because it was hitting swap. Race-enabled builds are also
2689
+ // memory-hungry — is it possible that the -race builder is also swapping?
2690
+ "GO_TEST_TIMEOUT_SCALE=2",
2691
+ },
2692
})
2693
addBuilder(BuildConfig{
2694
Name: "ios-arm64-corellium",
0 commit comments