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

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

Issue 1659163003: WebRTC: Add iOS bots running tests with the simulator (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updated more expectations Created 4 years, 11 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 | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.client.webrtc.fyi/master_mac_cfg.py
diff --git a/masters/master.client.webrtc.fyi/master_mac_cfg.py b/masters/master.client.webrtc.fyi/master_mac_cfg.py
index bde9d2d27db8dfcde72d5b93852a35e980c82503..b56293c916abea46731409d1c29253e316d7db77 100644
--- a/masters/master.client.webrtc.fyi/master_mac_cfg.py
+++ b/masters/master.client.webrtc.fyi/master_mac_cfg.py
@@ -17,6 +17,8 @@ def Update(c):
'Mac64 Release (swarming)',
'iOS64 Debug (GN)',
'iOS64 Release (GN)',
+ 'iOS64 Debug',
+ 'iOS64 Simulator Debug',
]),
])
@@ -24,12 +26,23 @@ def Update(c):
{'name': 'Mac64 Release (swarming)', 'slavebuilddir': 'mac_swarming'},
{'name': 'iOS64 Debug (GN)', 'slavebuilddir': 'mac64_gn'},
{'name': 'iOS64 Release (GN)', 'slavebuilddir': 'mac64_gn'},
+ {
+ 'name': 'iOS64 Debug',
+ 'slavebuilddir': 'mac64',
+ 'recipe': 'webrtc/ios',
+ },
+ {
+ 'name': 'iOS64 Simulator Debug',
+ 'slavebuilddir': 'mac64',
+ 'recipe': 'webrtc/ios',
+ },
]
c['builders'].extend([
{
'name': spec['name'],
- 'factory': m_annotator.BaseFactory('webrtc/standalone'),
+ 'factory': m_annotator.BaseFactory(spec.get('recipe',
+ 'webrtc/standalone')),
'notify_on_missing': True,
'category': 'mac',
'slavebuilddir': spec['slavebuilddir'],
« no previous file with comments | « no previous file | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698