Bug 1576957 - [ci] Turn off QuantumRender tasks on Ash, r=gbrown

Depends on D43806

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Halberstadt 2019-08-28 22:06:01 +00:00
Родитель 7cb7194011
Коммит 05f6b0f313
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -203,10 +203,17 @@ def target_tasks_ash(full_task_graph, parameters, graph_config):
# and none of this linux64-asan/debug stuff
if platform == 'linux64-asan' and attr['build_type'] == 'debug':
return False
# no non-e10s tests
if attr.get('unittest_suite'):
# no non-e10s tests
if not attr.get('e10s'):
return False
# filter out by test platform
for p in ('-qr',):
if p in attr['test_platform']:
return False
# don't upload symbols
if attr['kind'] == 'upload-symbols':
return False