| Index: masters/master.chromium.memory/master_linux_cfg.py
|
| diff --git a/masters/master.chromium.memory/master_linux_cfg.py b/masters/master.chromium.memory/master_linux_cfg.py
|
| index f5bb5227987ad7ed74e4d00fda9503ae5344dcd8..255f01f29745e6da6535d75d6a68b1f1844aaf31 100644
|
| --- a/masters/master.chromium.memory/master_linux_cfg.py
|
| +++ b/masters/master.chromium.memory/master_linux_cfg.py
|
| @@ -5,9 +5,19 @@
|
| from buildbot.scheduler import Triggerable
|
| from buildbot.schedulers.basic import SingleBranchScheduler
|
|
|
| -from master.factory import annotator_factory
|
| +from master.factory import remote_run_factory
|
|
|
| -m_annotator = annotator_factory.AnnotatorFactory()
|
| +import master_site_config
|
| +
|
| +ActiveMaster = master_site_config.ChromiumMemory
|
| +
|
| +def m_remote_run(recipe, **kwargs):
|
| + return remote_run_factory.RemoteRunFactory(
|
| + active_master=ActiveMaster,
|
| + repository='https://chromium.googlesource.com/chromium/tools/build.git',
|
| + recipe=recipe,
|
| + factory_properties={'path_config': 'kitchen'},
|
| + **kwargs)
|
|
|
| def Update(_config, active_master, c):
|
| c['schedulers'].extend([
|
| @@ -34,9 +44,7 @@ def Update(_config, active_master, c):
|
| c['builders'].extend([
|
| {
|
| 'name': spec['name'],
|
| - 'factory': m_annotator.BaseFactory(
|
| - spec.get('recipe', 'chromium'),
|
| - triggers=spec.get('triggers')),
|
| + 'factory': m_remote_run('chromium', triggers=spec.get('triggers')),
|
| 'notify_on_missing': True,
|
| 'category': '1linux asan lsan',
|
| } for spec in specs
|
|
|