Skip to content

Commit 91a9b25

Browse files
bsiegertgopherbot
authored andcommitted
dashboard: remove NetBSD 9.0 builders
The netbsd-386 and netbsd-amd64 builders with 9.3 contain various bugfixes, including to libpthread, that prevent test flakes. Remove the older version now. While here, remove issue golang/go#50138 (fixed) from the netbsd-arm* builders. Fixes golang/go#54773. Change-Id: Ibccf0817a69a3dd74651bd5a3f50ab77c3a92beb Reviewed-on: https://go-review.googlesource.com/c/build/+/454755 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Auto-Submit: Carlos Amedee <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Run-TryBot: Bryan Mills <[email protected]>
1 parent 14add1f commit 91a9b25

File tree

1 file changed

+2
-30
lines changed

1 file changed

+2
-30
lines changed

dashboard/builders.go

+2-30
Original file line numberDiff line numberDiff line change
@@ -415,27 +415,13 @@ var Hosts = map[string]*HostConfig{
415415
IsReverse: true,
416416
ExpectNum: 2, // See https://github.com/golang/go/issues/49557#issuecomment-969148789.
417417
},
418-
"host-netbsd-386-9_0": {
419-
VMImage: "netbsd-i386-9-0-2019q4",
420-
Notes: "NetBSD 9.0; GCE VM is built from script in build/env/netbsd-386",
421-
machineType: "n2", // force Intel; see go.dev/issue/49209
422-
SSHUsername: "root",
423-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
424-
},
425418
"host-netbsd-386-9_3": {
426419
VMImage: "netbsd-i386-9-3-202211120320",
427420
Notes: "NetBSD 9.3; GCE VM is built from script in build/env/netbsd-386",
428421
machineType: "n2", // force Intel; see go.dev/issue/49209
429422
SSHUsername: "root",
430423
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
431424
},
432-
"host-netbsd-amd64-9_0": {
433-
VMImage: "netbsd-amd64-9-0-2019q4",
434-
Notes: "NetBSD 9.0; GCE VM is built from script in build/env/netbsd-amd64",
435-
machineType: "n2", // force Intel; see go.dev/issue/49209
436-
SSHUsername: "root",
437-
GoBootstrap: "go1.19.2", // Go 1.17 is too old; see go.dev/issue/42422
438-
},
439425
"host-netbsd-amd64-9_3": {
440426
VMImage: "netbsd-amd64-9-3-202211120320v2",
441427
Notes: "NetBSD 9.3; GCE VM is built from script in build/env/netbsd-amd64",
@@ -2057,23 +2043,11 @@ func init() {
20572043
"GO_TEST_TIMEOUT_SCALE=5",
20582044
},
20592045
})
2060-
addBuilder(BuildConfig{
2061-
Name: "netbsd-386-9_0",
2062-
HostType: "host-netbsd-386-9_0",
2063-
distTestAdjust: noTestDirAndNoReboot,
2064-
KnownIssues: []int{50138},
2065-
})
20662046
addBuilder(BuildConfig{
20672047
Name: "netbsd-386-9_3",
20682048
HostType: "host-netbsd-386-9_3",
20692049
distTestAdjust: noTestDirAndNoReboot,
20702050
})
2071-
addBuilder(BuildConfig{
2072-
Name: "netbsd-amd64-9_0",
2073-
HostType: "host-netbsd-amd64-9_0",
2074-
distTestAdjust: noTestDirAndNoReboot,
2075-
KnownIssues: []int{50138},
2076-
})
20772051
addBuilder(BuildConfig{
20782052
Name: "netbsd-amd64-9_3",
20792053
HostType: "host-netbsd-amd64-9_3",
@@ -2097,8 +2071,7 @@ func init() {
20972071
// The machine is slow.
20982072
"GO_TEST_TIMEOUT_SCALE=10",
20992073
},
2100-
FlakyNet: true,
2101-
KnownIssues: []int{50138},
2074+
FlakyNet: true,
21022075
})
21032076
addBuilder(BuildConfig{
21042077
Name: "netbsd-arm64-bsiegert",
@@ -2109,8 +2082,7 @@ func init() {
21092082
// The machine is slow.
21102083
"GO_TEST_TIMEOUT_SCALE=10",
21112084
},
2112-
FlakyNet: true,
2113-
KnownIssues: []int{50138},
2085+
FlakyNet: true,
21142086
})
21152087
addBuilder(BuildConfig{
21162088
Name: "plan9-386",

0 commit comments

Comments
 (0)