Bug 1408403 - disable talos-g2-e10s on ccov builds. r=dustin

This commit is contained in:
Joel Maher 2017-11-10 10:32:55 -05:00
parent ac638de2f4
commit 08d5d4f854

View File

@ -666,7 +666,9 @@ def enable_code_coverage(config, tests):
test['mozharness'].setdefault('extra-options', []).append('--code-coverage')
test['when'] = {}
test['instance-size'] = 'xlarge'
test['run-on-projects'] = ['mozilla-central']
# Ensure we don't run on inbound/autoland/beta, but if the test is try only, ignore it
if 'mozilla-central' in test['run-on-projects'] or test['run-on-projects'] == 'built-projects':
test['run-on-projects'] = ['mozilla-central', 'try']
if test['test-name'].startswith('talos'):
test['max-run-time'] = 7200
@ -681,7 +683,9 @@ def enable_code_coverage(config, tests):
test['mozharness']['extra-options'].append('--add-option')
test['mozharness']['extra-options'].append('--tptimeout,15000')
elif test['build-platform'] == 'linux64-jsdcov/opt':
test['run-on-projects'] = ['mozilla-central']
# Ensure we don't run on inbound/autoland/beta, but if the test is try only, ignore it
if 'mozilla-central' in test['run-on-projects'] or test['run-on-projects'] == 'built-projects':
test['run-on-projects'] = ['mozilla-central', 'try']
test['mozharness'].setdefault('extra-options', []).append('--jsd-code-coverage')
yield test