Skip to content

Commit b50a251

Browse files
rscgopherbot
authored andcommitted
dashboard: rename dragonfly-amd64 builder to dragonfly-amd64-622
Two reasons: first, the builder is pinned to 6.2.2. Second, the reverse builder is still dialing in and confusing the coordinator. Make a clean break with the past. For golang/go#23060. Change-Id: Ia19cb6ef3fefef323b41c14298ef8dbc90a6e27b Reviewed-on: https://go-review.googlesource.com/c/build/+/420756 Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Russ Cox <[email protected]> Auto-Submit: Russ Cox <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent eeda4c8 commit b50a251

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

dashboard/builders.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ var slowBotAliases = map[string]string{
4242
"darwin-amd64": "darwin-amd64-12_0",
4343
"darwin-arm64": "darwin-arm64-12",
4444
"ios-arm64": "ios-arm64-corellium",
45-
"dragonfly": "dragonfly-amd64",
45+
"dragonfly": "dragonfly-amd64-622",
46+
"dragonfly-amd64": "dragonfly-amd64-622",
4647
"freebsd": "freebsd-amd64-13_0",
4748
"freebsd-386": "freebsd-386-13_0",
4849
"freebsd-amd64": "freebsd-amd64-13_0",
@@ -2699,7 +2700,7 @@ func init() {
26992700
tryOnly: true,
27002701
})
27012702
addBuilder(BuildConfig{
2702-
Name: "dragonfly-amd64",
2703+
Name: "dragonfly-amd64-622",
27032704
HostType: "host-dragonfly-amd64-622",
27042705
Notes: "DragonFly BSD 6.2.2, running on GCE",
27052706
})

dashboard/builders_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -607,10 +607,10 @@ func TestBuilderConfig(t *testing.T) {
607607
{b("plan9-arm", "net"), onlyPost},
608608
{b("[email protected]", "net"), none},
609609

610-
{b("dragonfly-amd64", "go"), onlyPost},
611-
{b("dragonfly-amd64", "net"), onlyPost},
612-
{b("[email protected]", "net"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+
613-
{b("[email protected]", "go"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+
610+
{b("dragonfly-amd64-622", "go"), onlyPost},
611+
{b("dragonfly-amd64-622", "net"), onlyPost},
612+
{b("dragonfly-amd64-622@go1.18", "net"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+
613+
{b("dragonfly-amd64-622@go1.18", "go"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+
614614

615615
{b("linux-amd64-staticlockranking", "go"), onlyPost},
616616
{b("[email protected]", "go"), onlyPost},

0 commit comments

Comments
 (0)