Bug 1637231 - add applink tests r=acreskey

Adds tests for applink for gve/fenix on p2/g5

Differential Revision: https://phabricator.services.mozilla.com/D75097
This commit is contained in:
Tarek Ziadé
2020-05-14 13:01:59 +00:00
parent d3cf89951d
commit 55f9814c1b
9 changed files with 195 additions and 10 deletions

View File

@@ -910,3 +910,15 @@ def target_tasks_system_symbols(full_task_graph, parameters, graph_config):
for name, task in six.iteritems(full_task_graph.tasks):
if task.kind == "system-symbols-upload":
yield name
@_target_task('perftest')
def target_tasks_perftest(full_task_graph, parameters, graph_config):
"""
Select perftest tasks we want to run daily
"""
for name, task in six.iteritems(full_task_graph.tasks):
if task.kind != "perftest":
continue
if task.attributes.get('cron', False):
yield name