diff --git a/dashboard/builders.go b/dashboard/builders.go index b0e7d8c297..ef21164ee3 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -42,7 +42,8 @@ var slowBotAliases = map[string]string{ "darwin-amd64": "darwin-amd64-12_0", "darwin-arm64": "darwin-arm64-12", "ios-arm64": "ios-arm64-corellium", - "dragonfly": "dragonfly-amd64", + "dragonfly": "dragonfly-amd64-622", + "dragonfly-amd64": "dragonfly-amd64-622", "freebsd": "freebsd-amd64-13_0", "freebsd-386": "freebsd-386-13_0", "freebsd-amd64": "freebsd-amd64-13_0", @@ -2699,7 +2700,7 @@ func init() { tryOnly: true, }) addBuilder(BuildConfig{ - Name: "dragonfly-amd64", + Name: "dragonfly-amd64-622", HostType: "host-dragonfly-amd64-622", Notes: "DragonFly BSD 6.2.2, running on GCE", }) diff --git a/dashboard/builders_test.go b/dashboard/builders_test.go index 975774e367..7e7f1a5e48 100644 --- a/dashboard/builders_test.go +++ b/dashboard/builders_test.go @@ -607,10 +607,10 @@ func TestBuilderConfig(t *testing.T) { {b("plan9-arm", "net"), onlyPost}, {b("plan9-arm@go1.12", "net"), none}, - {b("dragonfly-amd64", "go"), onlyPost}, - {b("dragonfly-amd64", "net"), onlyPost}, - {b("dragonfly-amd64@go1.18", "net"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+ - {b("dragonfly-amd64@go1.18", "go"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+ + {b("dragonfly-amd64-622", "go"), onlyPost}, + {b("dragonfly-amd64-622", "net"), onlyPost}, + {b("dragonfly-amd64-622@go1.18", "net"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+ + {b("dragonfly-amd64-622@go1.18", "go"), onlyPost}, // Dragonfly ABI changes supported by Go 1.14+ {b("linux-amd64-staticlockranking", "go"), onlyPost}, {b("linux-amd64-staticlockranking@go1.18", "go"), onlyPost},