File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -278,14 +278,16 @@ for builder in ["amd64-ubasan-clang-20", "amd64-ubasan-clang-20-debug"]:
278
278
279
279
def msan_builder (name : str , debug : bool ) -> GenericBuilder :
280
280
tags_msan = ("Debian" , "clang" , "msan" , "big" )
281
+ jobs = 12
281
282
if debug :
282
283
tag_msan = tags_msan + ("debug" ,)
284
+ jobs = 6
283
285
284
286
return GenericBuilder (
285
287
name = name ,
286
288
sequences = [
287
289
msan (
288
- jobs = 12 ,
290
+ jobs = jobs ,
289
291
config = DockerConfig (
290
292
repository = os .environ ["CONTAINER_REGISTRY_URL" ],
291
293
image_tag = "debian12-msan-clang-20" ,
@@ -309,14 +311,13 @@ def msan_builder(name: str, debug: bool) -> GenericBuilder:
309
311
next_build = nextBuild ,
310
312
can_start_build = canStartBuild ,
311
313
tags = list (tags_msan ),
312
- jobs = 12 ,
314
+ jobs = jobs ,
313
315
)
314
316
315
317
316
318
builder = "amd64-msan-clang-20-debug"
317
319
c ["builders" ].append (msan_builder (name = builder , debug = builder .endswith ("debug" )))
318
320
319
-
320
321
## ------------------------------------------------------------------- ##
321
322
## REPORTERS ##
322
323
## ------------------------------------------------------------------- ##
You can’t perform that action at this time.
0 commit comments