Skip to content

Commit

Permalink
dashboard: add -force to script invocations for broken/incomplete ports
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Heschi Kreinick <[email protected]>
Reviewed-by: Dmitri Shuralyov <[email protected]>
Reviewed-by: Dmitri Shuralyov <[email protected]>
TryBot-Result: Gopher Robot <[email protected]>
  • Loading branch information
4a6f656c committed Aug 13, 2023
1 parent 049da80 commit 1054d53
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 1054d53

Please sign in to comment.