BUILDBOT: Increase Make Jobs from 5 to 20

This was done on the recent buildbot migration due to server issues
to the new "roberta" VM as the hardware can now support running
20, rather than 5 jobs of make simultaneously which speeds builds.
This commit is contained in:
D G Turner
2019-12-12 01:59:26 +00:00
parent 9a9fa042d3
commit 0eb1afe94a
+4 -4
View File
@@ -2000,7 +2000,7 @@ for name, config in scumm_platforms_master.items():
f.addStep(Compile(command = [
"make",
"-j5"
"-j20"
],
env = config["env"]))
@@ -2055,7 +2055,7 @@ for name, config in scumm_platforms_stable.items():
f.addStep(Compile(command = [
"make",
"-j5"
"-j20"
],
env = config["env"]))
@@ -2118,7 +2118,7 @@ for name, config in scumm_platforms_master.items():
f.addStep(Compile(command = [
"make",
"-j5"
"-j20"
],
env = env_tools))
@@ -2171,7 +2171,7 @@ for name, config in scumm_platforms_other.items():
f.addStep(Compile(command = [
"make",
"-j5"
"-j20"
],
env = config["env"]))