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

Unified Diff: masters/master.tryserver.chromium.linux/slaves.cfg

Issue 2357493005: Add trusty builders on chromium.linux & tryserver.chromium.linux (Closed)
Patch Set: rebased 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
Index: masters/master.tryserver.chromium.linux/slaves.cfg
diff --git a/masters/master.tryserver.chromium.linux/slaves.cfg b/masters/master.tryserver.chromium.linux/slaves.cfg
index 3797fb61eb45521dbfdc1ca78f885e17a532b6d9..845fdeca8c551d36fd621a2e7c2b5c0015d30f7a 100644
--- a/masters/master.tryserver.chromium.linux/slaves.cfg
+++ b/masters/master.tryserver.chromium.linux/slaves.cfg
@@ -191,6 +191,30 @@ def linux():
'pool': 'linux_chromium_headless_rel',
})
+ # Trusty
+ trusty_slaves = range(1102, 1201)
+ trusty_builders = [
+ 'linux_chromium_compile_trusty_dbg_32_ng',
+ 'linux_chromium_trusty_dbg_32_ng',
+ 'linux_chromium_compile_trusty_rel_ng',
+ 'linux_chromium_compile_trusty_dbg_ng',
+ 'linux_chromium_trusty_rel_ng',
+ 'linux_chromium_trusty_dbg_ng',
+ 'cast_shell_linux_trusty',
+ ]
+ for i, slave in enumerate(trusty_slaves):
+ result.append({
+ 'master': 'TryServerChromiumLinux',
+ 'os': 'linux',
+ 'version': 'trusty',
+ 'bits': '64',
+ 'builder': trusty_builders,
+ 'preferred_builder': trusty_builders[i % len(trusty_builders)],
+ 'hostname': 'slave%d-c4' % slave,
+ 'pool': 'linux_trusty',
+ })
+ # TODO(yyanagisawa): split builders to CQ and non-CQ.
+
return result
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_linux.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698