dashboard: add netbsd-arm-bsiegert

This seems to be the last builder still using the old builder
binary and not buildlet. It needs an entry in here to switch
to buildlet and stage0.

Change-Id: If2fdd2298ab88d56b6850061050caf27ca7c8983
Reviewed-on: https://go-review.googlesource.com/c/build/+/168061
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Benny Siegert 2019-03-19 14:28:04 +01:00 коммит произвёл Brad Fitzpatrick
Родитель 3f24812763
Коммит ebee6e9d80
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -250,6 +250,12 @@ var Hosts = map[string]*HostConfig{
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-netbsd-386-0b3b511.tar.gz",
SSHUsername: "root",
},
"host-netbsd-arm-bsiegert": &HostConfig{
IsReverse: true,
ExpectNum: 1,
env: []string{"GOROOT_BOOTSTRAP=/usr/pkg/go112"},
OwnerGithub: "bsiegert",
},
"host-dragonfly-amd64-tdfbsd": &HostConfig{
IsReverse: true,
ExpectNum: 1,
@ -1712,6 +1718,17 @@ func init() {
tryOnly: true, // Disable regular builds.
tryBot: nil, // Disable trybots.
})
addBuilder(BuildConfig{
Name: "netbsd-arm-bsiegert",
HostType: "host-netbsd-arm-bsiegert",
ShouldRunDistTest: netBSDDistTestPolicy,
MaxAtOnce: 1,
tryBot: nil,
env: []string{
// The machine is slow.
"GO_TEST_TIMEOUT_SCALE=10",
},
})
addBuilder(BuildConfig{
Name: "plan9-386",
HostType: "host-plan9-386-gce",