Bug 1576957 - [ci] Stop running raptor with fission on Ash; run normal raptor tasks instead, r=gbrown

Differential Revision: https://phabricator.services.mozilla.com/D43809

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Halberstadt 2019-09-04 15:23:20 +00:00
parent 2f25176dc9
commit af43092d2c
2 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@ job-defaults:
by-test-platform: by-test-platform:
windows10-64-ref-hw-2017/opt: ['try', 'mozilla-central'] windows10-64-ref-hw-2017/opt: ['try', 'mozilla-central']
windows10-aarch64/opt: ['try', 'mozilla-central'] windows10-aarch64/opt: ['try', 'mozilla-central']
(?:windows10-64|windows7-32|linux64)(?:-qr)?/opt: ['mozilla-central', 'try'] (?:windows10-64|windows7-32|linux64)(?:-qr)?/opt: ['mozilla-central', 'try', 'ash']
macosx.*64(?:-qr)?/opt: ['mozilla-central', 'try'] macosx.*64(?:-qr)?/opt: ['mozilla-central', 'try']
default: ['try', 'trunk', 'mozilla-beta'] default: ['try', 'trunk', 'mozilla-beta']
tier: tier:

View File

@ -214,6 +214,10 @@ def target_tasks_ash(full_task_graph, parameters, graph_config):
if p in attr['test_platform']: if p in attr['test_platform']:
return False return False
# filter out raptor-fis (they are broken)
if attr['unittest_suite'] == 'raptor' and attr.get('unittest_variant') == 'fission':
return False
# don't upload symbols # don't upload symbols
if attr['kind'] == 'upload-symbols': if attr['kind'] == 'upload-symbols':
return False return False