Bug 1253341 - Run duplicate Talos jobs in AWS for Linux (large instances). r?rail
MozReview-Commit-ID: 3yvez20rMaE
--- 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:]