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

Unified Diff: masters/master.client.webrtc.fyi/master_win_cfg.py

Issue 2222163004: convert most webrtc builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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
Index: masters/master.client.webrtc.fyi/master_win_cfg.py
diff --git a/masters/master.client.webrtc.fyi/master_win_cfg.py b/masters/master.client.webrtc.fyi/master_win_cfg.py
index d615ddc08f5c0af10b3df36a1f6c91452cad4fce..60ecea961ed7772fc44967d0a4b0047106f804b9 100644
--- a/masters/master.client.webrtc.fyi/master_win_cfg.py
+++ b/masters/master.client.webrtc.fyi/master_win_cfg.py
@@ -4,9 +4,20 @@
from buildbot.schedulers.basic import SingleBranchScheduler
-from master.factory import annotator_factory
+from master.factory import remote_run_factory
+
+import master_site_config
+ActiveMaster = master_site_config.WebRTCFYI
+
+
+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)
-m_annotator = annotator_factory.AnnotatorFactory()
def Update(c):
c['schedulers'].extend([
@@ -28,7 +39,7 @@ def Update(c):
c['builders'].extend([
{
'name': spec['name'],
- 'factory': m_annotator.BaseFactory('webrtc/standalone'),
+ 'factory': m_remote_run('webrtc/standalone'),
'notify_on_missing': True,
'category': 'win',
'slavebuilddir': spec['slavebuilddir'],

Powered by Google App Engine
This is Rietveld 408576698