From 1054d53e7337f385e511f94259b089814e2e4c6a Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Sat, 12 Aug 2023 00:07:53 +1000 Subject: [PATCH] dashboard: add -force to script invocations for broken/incomplete ports This should allow the dashboard and trybots to still provide useful results. Also add known issues for openbsd/mips64. Updates golang/go#58110 Updates golang/go#61925 Change-Id: I102f4e913cddc38dc617972d1da8cc291cda0a0b Reviewed-on: https://go-review.googlesource.com/c/build/+/518655 Run-TryBot: Joel Sing Reviewed-by: Heschi Kreinick Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov TryBot-Result: Gopher Robot --- dashboard/builders.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dashboard/builders.go b/dashboard/builders.go index 94327ca58c..7d948c1362 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -2119,6 +2119,7 @@ func init() { addBuilder(BuildConfig{ Name: "openbsd-mips64-jsing", HostType: "host-openbsd-mips64-joelsing", + KnownIssues: []int{36435, 58110, 61546}, SkipSnapshot: true, FlakyNet: true, buildsRepo: func(repo, branch, goBranch string) bool { @@ -2135,6 +2136,8 @@ func init() { // The machine is slow. "GO_TEST_TIMEOUT_SCALE=5", }, + makeScriptArgs: []string{"-force"}, // Port is marked broken. + allScriptArgs: []string{"-force"}, // Port is marked broken. }) addBuilder(BuildConfig{ Name: "openbsd-ppc64-n2vi", @@ -2152,6 +2155,8 @@ func init() { }, distTestAdjust: noTestDirAndNoReboot, tryBot: nil, + makeScriptArgs: []string{"-force"}, // Port is incomplete. + allScriptArgs: []string{"-force"}, // Port is incomplete. }) addBuilder(BuildConfig{ Name: "openbsd-riscv64-jsing", @@ -2173,6 +2178,8 @@ func init() { // The machine is slow. "GO_TEST_TIMEOUT_SCALE=3", }, + makeScriptArgs: []string{"-force"}, // Port is incomplete. + allScriptArgs: []string{"-force"}, // Port is incomplete. }) addBuilder(BuildConfig{ Name: "netbsd-386-9_3",