https://bugs.webkit.org/show_bug.cgi?id=149669
Reviewed by Darin Adler.
We should prioritize testing of the latest build request on the iOS test bots
as we do for Mac and Windows test bots.
* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(loadBuilderConfig):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@190354
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
else:
builder["category"] = 'misc'
- if (builder['category'] == 'AppleMac' or builder['category'] == 'AppleWin') and builderType != 'Build':
+ if (builder['category'] in ('AppleMac', 'AppleWin', 'iOS')) and builderType != 'Build':
builder['nextBuild'] = pickLatestBuild
c['builders'].append(builder)
2015-09-30 Daniel Bates <dabates@apple.com>
+ Prioritize testing latest build request on iOS test bots
+ https://bugs.webkit.org/show_bug.cgi?id=149669
+
+ Reviewed by Darin Adler.
+
+ We should prioritize testing of the latest build request on the iOS test bots
+ as we do for Mac and Windows test bots.
+
+ * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+ (loadBuilderConfig):
+
+2015-09-30 Daniel Bates <dabates@apple.com>
+
Add buildbot category for iOS builders and testers
https://bugs.webkit.org/show_bug.cgi?id=149667