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

Unified Diff: masters/master.chromium.linux/master_linux_cfg.py

Issue 1869053002: kitchen_run: initial CL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 months 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 | scripts/master/chromium_step.py » ('j') | scripts/master/chromium_step.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.linux/master_linux_cfg.py
diff --git a/masters/master.chromium.linux/master_linux_cfg.py b/masters/master.chromium.linux/master_linux_cfg.py
index 30142f95a442cfa36dd0b8160ddedbd60ae45885..55d8b56aa165415cb605b3ad43e975e03387b5f2 100644
--- a/masters/master.chromium.linux/master_linux_cfg.py
+++ b/masters/master.chromium.linux/master_linux_cfg.py
@@ -6,10 +6,15 @@ from buildbot.scheduler import Triggerable
from buildbot.schedulers.basic import SingleBranchScheduler
from master.factory import annotator_factory
+from master.factory import kitchen_factory
m_annotator = annotator_factory.AnnotatorFactory()
def Update(_config, active_master, c):
+ m_kitchen = kitchen_factory.KitchenFactory(
iannucci 2016/04/11 18:07:28 Can we name this something more descriptive? annot
Paweł Hajdan Jr. 2016/04/12 15:55:01 Well, this runs kitchen so it makes sense for me t
+ active_master=active_master,
+ repository='https://chromium.googlesource.com/chromium/tools/build.git')
+
c['schedulers'].extend([
SingleBranchScheduler(name='linux_src',
branch='master',
@@ -22,7 +27,6 @@ def Update(_config, active_master, c):
]),
])
specs = [
- {'name': 'Linux Builder'},
{'name': 'Linux Tests'},
{'name': 'Linux Builder (dbg)(32)'},
{'name': 'Linux Tests (dbg)(1)(32)'},
@@ -31,6 +35,12 @@ def Update(_config, active_master, c):
{'name': 'Cast Linux'},
]
+ c['builders'].append({
+ 'name': 'Linux Builder',
estaab 2016/04/08 05:22:46 Start with infra? Also separate kitchen_run implem
iannucci 2016/04/11 18:07:28 +1 to both
+ 'factory': m_kitchen.BaseFactory('chromium'),
+ 'auto_reboot': False,
+ })
+
c['builders'].extend([
{
'name': spec['name'],
« no previous file with comments | « no previous file | scripts/master/chromium_step.py » ('j') | scripts/master/chromium_step.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698