Bug 1641131 - [taskgraph] Filter out devedition builds and tests with |mach try auto|, r=marco

Differential Revision: https://phabricator.services.mozilla.com/D78569
This commit is contained in:
Andrew Halberstadt 2020-06-05 20:28:44 +00:00
Родитель bc7a9918ad
Коммит c40751d405
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -265,6 +265,7 @@ def target_tasks_try_auto(full_task_graph, parameters, graph_config):
return [l for l, t in six.iteritems(full_task_graph.tasks)
if standard_filter(t, parameters)
and filter_out_shipping_phase(t, parameters)
and filter_out_devedition(t, parameters)
and filter_by_uncommon_try_tasks(t.label)]