Skip to content

Commit

Permalink
dashboard: add windows and 32-bit longtest builders
Browse files Browse the repository at this point in the history
Fixes golang/go#29641
Fixes golang/go#26529

Change-Id: I5ab3aa443276ab36b866d7fabc1d78a82b34cb64
Reviewed-on: https://go-review.googlesource.com/c/build/+/202479
Reviewed-by: Bryan C. Mills <[email protected]>
  • Loading branch information
bradfitz committed Oct 21, 2019
1 parent b01e492 commit 70a7cc8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -1681,6 +1681,20 @@ func init() {
"GO_TEST_TIMEOUT_SCALE=5", // give them lots of time
},
})
addBuilder(BuildConfig{
Name: "linux-386-longtest",
HostType: "host-linux-stretch-morecpu",
MaxAtOnce: 1,
Notes: "Debian Stretch with go test -short=false; to get 32-bit coverage",
buildsRepo: func(repo, branch, goBranch string) bool {
return repo == "go" || (branch == "master" && goBranch == "master")
},
needsGoProxy: true, // for cmd/go module tests
env: []string{
"GO_TEST_SHORT=0",
"GO_TEST_TIMEOUT_SCALE=5", // give them lots of time
},
})
addBuilder(BuildConfig{
Name: "linux-arm",
HostType: "host-linux-arm-scaleway",
Expand Down Expand Up @@ -1971,6 +1985,20 @@ func init() {
tryBot: defaultTrySet(),
numTryTestHelpers: 5,
})
addBuilder(BuildConfig{
Name: "windows-amd64-longtest",
HostType: "host-windows-amd64-2016",
MaxAtOnce: 1,
Notes: "Windows Server 2016 with go test -short=false",
buildsRepo: func(repo, branch, goBranch string) bool {
return repo == "go" || (branch == "master" && goBranch == "master")
},
needsGoProxy: true, // for cmd/go module tests
env: []string{
"GO_TEST_SHORT=0",
"GO_TEST_TIMEOUT_SCALE=5", // give them lots of time
},
})
addBuilder(BuildConfig{
Name: "windows-amd64-race",
HostType: "host-windows-amd64-2008",
Expand Down

0 comments on commit 70a7cc8

Please sign in to comment.