From 8444ab33d341fa03f78105e77191ee1e5117e607 Mon Sep 17 00:00:00 2001 From: Than McIntosh Date: Thu, 23 Feb 2023 09:09:59 -0500 Subject: [PATCH] builders: redirect windows-386 slowbot alias to 2016 vintage Update the "windows-386" slowbot alias to windows-386-2016 from windows-386-2008. Updates golang/go#58007. Change-Id: I44e10500fcf0520976a80916b1fc4a42307cd7a3 Reviewed-on: https://go-review.googlesource.com/c/build/+/470715 TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov Reviewed-by: Michael Pratt Run-TryBot: Than McIntosh Reviewed-by: Dmitri Shuralyov --- dashboard/builders.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/builders.go b/dashboard/builders.go index 4e41caec..4ed24a7a 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -97,7 +97,7 @@ var slowBotAliases = map[string]string{ "solaris-amd64": "solaris-amd64-oraclerel", "wasm": "js-wasm-node18", "windows": "windows-amd64-2016", - "windows-386": "windows-386-2008", + "windows-386": "windows-386-2016", "windows-amd64": "windows-amd64-2016", "windows-arm": "windows-arm-zx2c4", "windows-arm64": "windows-arm64-11", @@ -2291,8 +2291,8 @@ func init() { return onlyGo(repo, branch, goBranch) && atLeastGo1(goBranch, 20) }, - env: []string{"GOARCH=386", "GOHOSTARCH=386"}, - tryBot: defaultTrySet(), + env: []string{"GOARCH=386", "GOHOSTARCH=386"}, + tryBot: defaultTrySet(), numTryTestHelpers: 4, }) addBuilder(BuildConfig{ @@ -2307,7 +2307,7 @@ func init() { return onlyGo(repo, branch, goBranch) && atMostGo1(goBranch, 19) }, - env: []string{"GOARCH=386", "GOHOSTARCH=386"}, + env: []string{"GOARCH=386", "GOHOSTARCH=386"}, tryBot: func(repo, branch, goBranch string) bool { // See comment above about the atMostGo1 call below. dft := defaultTrySet()