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

Unified Diff: tools/buildbot_spec.py

Issue 1862723002: Set 'device_cfg' parameter for iOS bots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Regenerate expectations Created 4 years, 8 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 | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index 551907038eec0856ce470c9d3850b9dcf4a1b5d0..b549a1b08be815df146d41e23572d65803aa3d1a 100755
--- a/tools/buildbot_spec.py
+++ b/tools/buildbot_spec.py
@@ -244,6 +244,12 @@ def device_cfg(builder_dict):
'Daisy': 'daisy',
}[builder_dict['model']]
+ # iOS.
+ if 'iOS' in builder_dict.get('os', ''):
+ return {
+ 'iPad4': 'iPad4,1',
+ }[builder_dict['model']]
+
return None
« no previous file with comments | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698