Skip to content

Commit 6331bea

Browse files
committed
MDBF-1076: MSAN Debug builder master.cfg
1 parent cd4e7a6 commit 6331bea

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

master-migration/master.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,14 +278,16 @@ for builder in ["amd64-ubasan-clang-20", "amd64-ubasan-clang-20-debug"]:
278278

279279
def msan_builder(name: str, debug: bool) -> GenericBuilder:
280280
tags_msan = ("Debian", "clang", "msan", "big")
281+
jobs = 12
281282
if debug:
282283
tag_msan = tags_msan + ("debug",)
284+
jobs = 6
283285

284286
return GenericBuilder(
285287
name=name,
286288
sequences=[
287289
msan(
288-
jobs=12,
290+
jobs=jobs,
289291
config=DockerConfig(
290292
repository=os.environ["CONTAINER_REGISTRY_URL"],
291293
image_tag="debian12-msan-clang-20",
@@ -309,14 +311,13 @@ def msan_builder(name: str, debug: bool) -> GenericBuilder:
309311
next_build=nextBuild,
310312
can_start_build=canStartBuild,
311313
tags=list(tags_msan),
312-
jobs=12,
314+
jobs=jobs,
313315
)
314316

315317

316318
builder = "amd64-msan-clang-20-debug"
317319
c["builders"].append(msan_builder(name=builder, debug=builder.endswith("debug")))
318320

319-
320321
## ------------------------------------------------------------------- ##
321322
## REPORTERS ##
322323
## ------------------------------------------------------------------- ##

0 commit comments

Comments
 (0)