From 77d1e5c1ba22c0875e750ee3d302a26ee0a773ed Mon Sep 17 00:00:00 2001 From: Meng Zhuo Date: Thu, 14 Jul 2022 19:01:17 +0800 Subject: [PATCH] dashboard: skip perf test for linux-riscv64-unmatched The perf test still timeed out even CL 417314 increased builder timeout scale up to 6. Unfortunately we had to skip this test for now and revert timeout scale back to 4. For golang/go#53745 Change-Id: I247179b42c575ca05bb0ec6b51d260ab51d912f3 Reviewed-on: https://go-review.googlesource.com/c/build/+/417495 Reviewed-by: Bryan Mills Reviewed-by: Dmitri Shuralyov Run-TryBot: Meng Zhuo TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov --- dashboard/builders.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dashboard/builders.go b/dashboard/builders.go index 2082acf4..334a9cdb 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -2713,11 +2713,17 @@ func init() { addBuilder(BuildConfig{ HostType: "host-linux-riscv64-unmatched", Name: "linux-riscv64-unmatched", - env: []string{"GO_TEST_TIMEOUT_SCALE=6"}, + env: []string{"GO_TEST_TIMEOUT_SCALE=4"}, FlakyNet: true, - buildsRepo: onlyMasterDefault, distTestAdjust: riscvDistTestPolicy, privateGoProxy: true, // this builder is behind firewall + buildsRepo: func(repo, branch, goBranch string) bool { + // see https://go.dev/issue/53745 + if repo == "perf" { + return false + } + return onlyMasterDefault(repo, branch, goBranch) + }, }) addBuilder(BuildConfig{ Name: "linux-s390x-ibm",