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

Unified Diff: masters/master.tryserver.webrtc/master.cfg

Issue 2245093002: WebRTC: Disable remote_run for webrtc/ios recipe (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
« no previous file with comments | « masters/master.client.webrtc/master_mac_cfg.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.tryserver.webrtc/master.cfg
diff --git a/masters/master.tryserver.webrtc/master.cfg b/masters/master.tryserver.webrtc/master.cfg
index 7db3a6f5be6a307365c4b801aacb0732af247169..173a0d2b6da8033715d00606bacecf2a462b88a6 100755
--- a/masters/master.tryserver.webrtc/master.cfg
+++ b/masters/master.tryserver.webrtc/master.cfg
@@ -138,10 +138,12 @@ c['builders'] = [
'name': spec['name'],
# TODO(sergiyb): Remove the timeout below after all bots have synched past
# Blink merge commit.
+ # remote_run is not working for the webrtc/ios recipe: crbug.com/637666.
'factory': m_annotator.BaseFactory(spec['recipe'], timeout=3600)
- if spec.get('recipe') == 'webrtc/libfuzzer'
- else m_remote_run(spec.get('recipe', 'webrtc/standalone'),
- timeout=3600),
+ if 'recipe' in spec and spec['recipe'] in ('webrtc/ios',
+ 'webrtc/libfuzzer')
+ else m_remote_run(spec.get('recipe', 'webrtc/standalone'),
+ timeout=3600),
'slavebuilddir': spec['slavebuilddir'],
} for spec in specs
]
« no previous file with comments | « masters/master.client.webrtc/master_mac_cfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698