Bug 1377982 - Use the Ubuntu 16.04 OS in Talos test suites that run on linux64-ccov. r?marco draft
authorGreg Mierzwinski <gmierz2@outlook.com>
Tue, 04 Jul 2017 14:31:47 -0400
changeset 603820 a27c9d4bdeca0fe5fd379413e723b466da02e286
parent 603312 a3b192dc8344679ce208af42b6246c3c0d42cab3
child 636019 0af05e6a2529df54e203e7c31d8290b71d2f4328
push id66881
push userbmo:gmierz2@outlook.com
push dateTue, 04 Jul 2017 20:49:00 +0000
reviewersmarco
bugs1377982
milestone56.0a1
Bug 1377982 - Use the Ubuntu 16.04 OS in Talos test suites that run on linux64-ccov. r?marco This patch updates the OS that the Talos test suites use when they run on linux64-ccov to Ubuntu 16.04. MozReview-Commit-ID: 4hx0jhTXv1C
taskcluster/taskgraph/transforms/tests.py
--- a/taskcluster/taskgraph/transforms/tests.py
+++ b/taskcluster/taskgraph/transforms/tests.py
@@ -507,16 +507,17 @@ def enable_code_coverage(config, tests):
         if test['build-platform'] == 'linux64-ccov/opt':
             test['mozharness'].setdefault('extra-options', []).append('--code-coverage')
             test['when'] = {}
             test['instance-size'] = 'xlarge'
             test['run-on-projects'] = ['mozilla-central']
 
             if test['test-name'].startswith('talos'):
                 test['max-run-time'] = 7200
+                test['docker-image'] = {"in-tree": "desktop1604-test"}
                 test['mozharness']['config'] = ['talos/linux64_config_taskcluster.py']
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--cycles,1')
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--tppagecycles,1')
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--no-upload-results')
         elif test['build-platform'] == 'linux64-jsdcov/opt':