Skip to content

Commit c6075b8

Browse files
rscgopherbot
authored andcommitted
dashboard: use dragonfly on GCE for dragonfly-amd64 builds
Now that we have DragonflyBSD on GCE, use it instead of the single reverse builder provided by the DragonflyBSD team. A full 'debugnewvm' all.bash run, including starting the VM, takes 12 minutes, which is rather a lot faster than the current machine. Fixes golang/go#23060. Fixes golang/go#45215. Fixes golang/go#53577. Change-Id: Icb6e5cfde2e8c7ff16fa03cbc0eb833b275180ef Reviewed-on: https://go-review.googlesource.com/c/build/+/419084 Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]> Auto-Submit: Russ Cox <[email protected]>
1 parent 0e2fad0 commit c6075b8

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

dashboard/builders.go

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,12 @@ var Hosts = map[string]*HostConfig{
217217
},
218218
SSHUsername: "gopher",
219219
},
220-
"host-dragonfly-amd64-master": {
221-
IsReverse: true,
222-
ExpectNum: 1,
223-
Notes: "DragonFly BSD master, run by DragonFly team",
224-
env: []string{"GOROOT_BOOTSTRAP=/usr/local/go"},
225-
SSHUsername: "root",
226-
Owners: []*gophers.Person{gh("tuxillo")},
220+
"host-dragonfly-amd64-622": {
221+
Notes: "DragonFly BSD 6.2.2 on GCE, built from build/env/dragonfly-amd64",
222+
VMImage: "dragonfly-amd64-622",
223+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.dragonfly-amd64",
224+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-dragonfly-amd64-go1.17.12.tar.gz",
225+
SSHUsername: "root",
227226
},
228227
"host-freebsd-amd64-11_4": {
229228
VMImage: "freebsd-amd64-114",
@@ -2697,13 +2696,9 @@ func init() {
26972696
tryOnly: true,
26982697
})
26992698
addBuilder(BuildConfig{
2700-
Name: "dragonfly-amd64",
2701-
HostType: "host-dragonfly-amd64-master",
2702-
Notes: "DragonFly BSD master, run by DragonFly team",
2703-
distTestAdjust: noTestDirAndNoReboot,
2704-
env: []string{"GO_TEST_TIMEOUT_SCALE=2"}, // see golang.org/issue/45216
2705-
SkipSnapshot: true,
2706-
KnownIssues: []int{53577},
2699+
Name: "dragonfly-amd64",
2700+
HostType: "host-dragonfly-amd64-622",
2701+
Notes: "DragonFly BSD 6.2.2, running on GCE",
27072702
})
27082703
addBuilder(BuildConfig{
27092704
Name: "freebsd-arm-paulzhol",

0 commit comments

Comments
 (0)