Bug 1331986 - Set linux and android test tasks previously in buildbot as tier 1. r=jmaher
authorJustin Wood <Callek@gmail.com>
Wed, 18 Jan 2017 11:48:18 -0500
changeset 463201 3eee272cff7f42a81efffdf6a9596700c087b399
parent 463197 b3774461acc6bee2216c5f57e167f9e5795fb09d
child 463202 931b13d5f3653a4644d087f69a5542b7283a5c4d
child 463211 60168598b126058fa920cf13f699150e9df2b618
push id41980
push userCallek@gmail.com
push dateWed, 18 Jan 2017 16:50:11 +0000
reviewersjmaher
bugs1331986
milestone53.0a1
Bug 1331986 - Set linux and android test tasks previously in buildbot as tier 1. r=jmaher MozReview-Commit-ID: 5sZ6HBWOg8P
taskcluster/taskgraph/transforms/tests.py
--- a/taskcluster/taskgraph/transforms/tests.py
+++ b/taskcluster/taskgraph/transforms/tests.py
@@ -405,20 +405,25 @@ def set_tier(config, tests):
     """Set the tier based on policy for all test descriptions that do not
     specify a tier otherwise."""
     for test in tests:
         if 'tier' in test:
             resolve_keyed_by(test, 'tier', item_name=test['test-name'])
 
         # only override if not set for the test
         if 'tier' not in test or test['tier'] == 'default':
-            if test['test-platform'] in ['linux64/debug',
+            if test['test-platform'] in ['linux32/opt',
+                                         'linux32/debug',
+                                         'linux64/opt',
+                                         'linux64/debug',
+                                         'linux64-pgo/opt',
                                          'linux64-asan/opt',
+                                         'android-4.3-arm7-api-15/opt',
                                          'android-4.3-arm7-api-15/debug',
-                                         'android-x86/opt']:
+                                         'android-4.2-x86/opt']:
                 test['tier'] = 1
             elif test['test-platform'].startswith('windows'):
                 test['tier'] = 3
             else:
                 test['tier'] = 2
         yield test