Bug 1253341 - Run duplicate Talos jobs in AWS for Linux (large instances). r?rail
authorJoel Maher <jmaher@mozilla.com>
Tue, 12 Apr 2016 16:00:43 -0400 (2016-04-12)
changeset 14101 609fef31918850440accc4e69fced9d84ab65df3
parent 14100 f35a9ae54e4dc1bb634678301591a7a09650f7ce
child 14102 b6732177797720f8c29116de15766dbcbcb00aa3
child 14103 fb5130e58a95a25f2235916dc9e857deced3e8bd
push id9896
push userjmaher@mozilla.com
push dateWed, 13 Apr 2016 12:14:56 +0000 (2016-04-13)
reviewersrail
bugs1253341
Bug 1253341 - Run duplicate Talos jobs in AWS for Linux (large instances). r?rail MozReview-Commit-ID: 3yvez20rMaE
mozilla-tests/config.py
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -3153,25 +3153,25 @@ delete_slave_platform(BRANCHES, PLATFORM
 for branch in set(BRANCHES.keys()) - set(win7_vm_inactive_branches):
     for platform in ('win32', 'win64'):
         if platform not in BRANCHES[branch]['platforms']:
             continue
         if nested_haskey(BRANCHES[branch]['platforms'], platform, 'win7-ix'):
             del BRANCHES[branch]['platforms'][platform]['win7-ix']
 
 # Bug 1253341 - run talos jobs on AWS
-for branch in ():
-    BRANCHES[branch]['platforms']['linux64']['talos_slave_platforms'] = ['ubuntu64_hw', 'ubuntu64_vm']
+for branch in ('try',):
+    BRANCHES[branch]['platforms']['linux64']['talos_slave_platforms'] = ['ubuntu64_hw', 'ubuntu64_vm_large']
     # Add ubuntu64_vm to the talos suites
     for test, test_config in BRANCHES[branch].items():
         if not test.endswith('_tests'):
             continue
         tests, merge, extra, platforms = test_config
-        if 'ubuntu64_hw' in platforms and 'ubuntu64_vm' not in platforms:
-            platforms = platforms + ['ubuntu64_vm']
+        if 'ubuntu64_hw' in platforms and 'ubuntu64_vm_large' not in platforms:
+            platforms = platforms + ['ubuntu64_vm_large']
             BRANCHES[branch][test] = (tests, merge, extra, platforms)
 
 if __name__ == "__main__":
     import sys
     import pprint
 
     args = sys.argv[1:]