8000 Remove unsupported Windows 7 from stable builders by aeros · Pull Request #173 · python/buildmaster-config · GitHub
[go: up one dir, main page]

Skip to content

Remove unsupported Windows 7 from stable builders #173

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
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
7 changes: 4 additions & 3 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,9 @@ def get_builders(settings):
("AMD64 FreeBSD Non-Debug", "koobs-freebsd-9e36", SlowNonDebugUnixBuild, STABLE),
("AMD64 FreeBSD Shared", "koobs-freebsd-564d", SlowSharedUnixBuild, STABLE),
# Windows
("AMD64 Windows7 SP1", "kloth-win64", Windows64Build, STABLE),
("AMD64 Windows7 SP1 VS9.0", "kloth-win64", Windows6427VS9Build, STABLE),
("AMD64 Windows10", "bolen-windows10", Windows64Build, STABLE),
("AMD64 Windows8.1 Non-Debug", "ware-win81-release", Windows64ReleaseBuild, STABLE),
("AMD64 Windows8.1 Refleaks", "ware-win81-release", Windows64RefleakBuild, STABLE),
("x86 Windows7", "bolen-windows7", SlowWindowsBuild, STABLE),
("x86 Windows XP", "bolen-windows", WindowsBuild, STABLE),
("x86 Windows XP VS9.0", "bolen-windows", Windows27VS9Build, STABLE),
# -- Unstable builders --
Expand Down Expand Up @@ -169,6 +166,10 @@ def get_builders(settings):
# Windows
("ARM32 Windows10 1903", "monson-win-arm32", WindowsArm32Build, UNSTABLE),
("ARM32 Windows10 1903 Non-Debug", "monson-win-arm32", WindowsArm32ReleaseBuild, UNSTABLE),
# Unsupported Windows
("AMD64 Windows7 SP1", "kloth-win64", Windows64Build, UNSTABLE),
("AMD64 Windows7 SP1 VS9.0", "kloth-win64", Windows6427VS9Build, UNSTABLE),
("x86 Windows7", "bolen-windows7", SlowWindowsBuild, UNSTABLE),
]


Expand Down
0