@@ -300,7 +300,7 @@ for branch_num, (git_url, branchname, git_branch) in enumerate(git_branches):
300
300
# Set up Pull Request builders
301
301
302
302
stable_pull_request_builders = []
303
- unstable_pull_request_builders = []
303
+ all_pull_request_builders = []
304
304
305
305
for name , worker_name , buildfactory , stability , tier in BUILDERS :
306
306
if "Windows XP" in name or "VS9.0" in name :
@@ -310,11 +310,9 @@ for name, worker_name, buildfactory, stability, tier in BUILDERS:
310
310
continue
311
311
312
312
buildername = f"{ name } PR"
313
-
313
+ all_pull_request_builders . append ( buildername )
314
314
if stability == STABLE :
315
315
stable_pull_request_builders .append (buildername )
316
- else :
317
- unstable_pull_request_builders .append (buildername )
318
316
319
317
source = GitHub (repourl = git_url , ** GIT_KWDS )
320
318
@@ -348,7 +346,7 @@ c["schedulers"].append(
348
346
name = "pull-request-scheduler" ,
349
347
change_filter = util .ChangeFilter (filter_fn = should_pr_be_tested ),
350
348
treeStableTimer = 30 , # seconds
351
- builderNames = stable_pull_request_builders + unstable_pull_request_builders ,
349
+ builderNames = all_pull_request_builders ,
352
350
stable_builder_names = set (stable_pull_request_builders ),
353
351
)
354
352
)
@@ -393,7 +391,7 @@ c["www"] = dict(
393
391
"github" : {
394
392
"class" : partial (
395
393
CustomGitHubEventHandler ,
396
- builder_names = stable_pull_request_builders + unstable_pull_request_builders ,
394
+ builder_names = all_pull_request_builders ,
397
395
),
398
396
"secret" : str (settings .github_change_hook_secret ),
399
397
"strict" : True ,
@@ -457,7 +455,7 @@ c["services"].append(
457
455
reporters .GitHubStatusPush (
458
456
str (settings .github_status_token ),
459
457
generators = [
460
- BuildStartEndStatusGenerator (builders = github_status_builders + stable_pull_request_builders ),
458
+ BuildStartEndStatusGenerator (builders = github_status_builders + all_pull_request_builders ),
461
459
],
462
460
verbose = bool (settings .verbosity ),
463
461
)
0 commit comments