From 9112d7a24fad7d4f17c497d3b25b48f39fa45f3b Mon Sep 17 00:00:00 2001 From: Rebecca Taft Date: Fri, 18 Nov 2022 22:08:40 +0000 Subject: [PATCH] cmd: increase logictestccl stress timeout to 2h The default timeout of 1h is not enough. Increase it to 2h to match the regular logictests. Fixes #92108 Release note: None --- pkg/cmd/teamcity-trigger/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/cmd/teamcity-trigger/main.go b/pkg/cmd/teamcity-trigger/main.go index fb0dd47174cf..57d8810347b0 100644 --- a/pkg/cmd/teamcity-trigger/main.go +++ b/pkg/cmd/teamcity-trigger/main.go @@ -109,7 +109,8 @@ func runTC(queueBuild func(string, map[string]string)) { } else { opts["env.COCKROACH_KVNEMESIS_STEPS"] = "10000" } - case baseImportPath + "sql/logictest", baseImportPath + "kv/kvserver": + case baseImportPath + "sql/logictest", baseImportPath + "kv/kvserver", + baseImportPath + "ccl/logictestccl": // Stress heavy with reduced parallelism (to avoid overloading the // machine, see https://github.com/cockroachdb/cockroach/pull/10966). parallelism /= 2