Skip to content

Commit

Permalink
Merge pull request #113548 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-23.1-113176
  • Loading branch information
rickystewart authored Nov 1, 2023
2 parents 554af7d + a37cd96 commit 56c42e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/teamcity-trigger/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ func runTC(queueBuild func(string, map[string]string)) {
// Run non-race build.
bazelFlags, ok := opts["env.EXTRA_BAZEL_FLAGS"]
if ok {
opts["env.EXTRA_BAZEL_FLAGS"] = fmt.Sprintf("%s --test_sharding_strategy=disabled --jobs %d", bazelFlags, parallelism)
opts["env.EXTRA_BAZEL_FLAGS"] = fmt.Sprintf("%s --test_sharding_strategy=disabled", bazelFlags)
} else {
opts["env.EXTRA_BAZEL_FLAGS"] = fmt.Sprintf("--test_sharding_strategy=disabled --jobs %d", parallelism)
opts["env.EXTRA_BAZEL_FLAGS"] = "--test_sharding_strategy=disabled"
}

opts["env.STRESSFLAGS"] = fmt.Sprintf("-maxruns %d -maxtime %s -maxfails %d -p %d",
Expand Down

0 comments on commit 56c42e2

Please sign in to comment.