Skip to content
Merged
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: 6 additions & 5 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ class WindowsBuild(TaggedBuildFactory):
test_command = [r"Tools\buildbot\test.bat"]
clean_command = [r"Tools\buildbot\clean.bat"]
python_command = [r"python.bat"]
buildFlags = []
buildFlags = ["-p", "Win32"]
remoteDeployFlags = []
remotePythonInfoFlags = []
testFlags = ["-j2"]
testFlags = ["-p", "Win32", "-j2"]
cleanFlags = []
test_timeout = None
factory_tags = ["win32"]
Expand Down Expand Up @@ -423,14 +423,14 @@ class SlowWindowsBuild(WindowsBuild):

class Windows64Build(WindowsBuild):
buildFlags = ["-p", "x64"]
testFlags = ["-x64", "-j2"]
testFlags = ["-p", "x64", "-j2"]
cleanFlags = ["-p", "x64"]
factory_tags = ["win64"]


class Windows64RefleakBuild(Windows64Build):
buildersuffix = ".refleak"
testFlags = ["-x64"] + WindowsRefleakBuild.testFlags
testFlags = ["-p", "x64"] + WindowsRefleakBuild.testFlags
# -R 3:3 is supposed to only require timeout x 6, but in practice,
# it's much more slower. Use timeout x 10 to prevent timeout
# caused by --huntrleaks.
Expand All @@ -457,7 +457,8 @@ class WindowsArm32Build(WindowsBuild):
remoteDeployFlags = ["-arm32"]
remotePythonInfoFlags = ["-arm32"]
testFlags = [
"-arm32",
"-p",
"ARM",
"-x",
"test_multiprocessing_spawn",
"-x",
Expand Down