Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(744)

Unified Diff: scripts/slave/compile.py

Issue 2513063002: Adding Findit high-end trybots to machines that can use higher -j value for compile (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/compile.py
diff --git a/scripts/slave/compile.py b/scripts/slave/compile.py
index 17ea43e9033c4a912eca4408bc2d2e7de6e37036..40c5035abcb752d3b63e2cb7e9911f907ea782aa 100755
--- a/scripts/slave/compile.py
+++ b/scripts/slave/compile.py
@@ -267,7 +267,7 @@ def determine_goma_jobs():
# Since Mac had process number limitation before, we had to set
# the upper limit to 50. Now that the process number limitation is 2000,
# so we would be able to use 10 * number_of_processors.
- # For the safety, we'd like to set the upper limit to 200.
+ # For safety, we'd like to set the upper limit to 200.
#
# Note that currently most try-bot build slaves have 8 processors.
if chromium_utils.IsMac() or chromium_utils.IsWindows():
@@ -282,7 +282,9 @@ def determine_goma_jobs():
# Also increasing cpus for v8/blink trybots.
['build%d-m4' % x for x in xrange(45, 48)] +
# Also increasing cpus for LTO buildbots.
- ['slave%d-c1' % x for x in [20, 33] + range(78, 108)]):
+ ['slave%d-c1' % x for x in [20, 33] + range(78, 108)] +
+ # Also increasing cpus for Findit trybots.
+ ['slave%d-c4' % x for x in [799] + range(873, 878)]):
return min(10 * number_of_processors, 200)
return 50
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698