Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ def get_tier_from_tags(tags):
BuilderDef(
"AMD64 Windows Server 2025 Refleaks",
factories.Windows64RefleakBuild,
tags={UNSTABLE, TIER_1},
tags={STABLE, TIER_1},
worker_name="ware-ws2025",
branches=BRANCHES.only_since(3, 13),
),
BuilderDef(
"AMD64 Windows PGO",
Expand Down Expand Up @@ -197,7 +198,13 @@ def generate_builderdefs(tags, entries):
# Windows x86-64 MSVC
("AMD64 Windows10", "bolen-windows10", Windows64Build),
("AMD64 Windows11 Non-Debug", "ware-win11", Windows64ReleaseBuild),
("AMD64 Windows11 Refleaks", "ware-win11", Windows64RefleakBuild),
BuilderDef(
"AMD64 Windows11 Refleaks",
factories.Windows64RefleakBuild,
tags={STABLE, TIER_1},
worker_name="ware-win11",
branches=BRANCHES.only_until(3, 12),
),
("AMD64 Windows Server 2022 NoGIL", "itamaro-win64-srv-22-aws", Windows64NoGilBuild),
BuilderDef(
"AMD64 Windows PGO Tailcall",
Expand Down
1 change: 1 addition & 0 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@ class Windows64ClangBuild(Windows64Build):
"PlatformToolset": "ClangCL",
}
factory_tags = [*Windows64Build.factory_tags, 'clang']
branches = BRANCHES.only_since(3, 14)


class Windows64BigmemBuild(BaseWindowsBuild):
Expand Down