| 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
|
| ]
|
|
|