Bug 1670005 - Remove weekly Fennec cron for Raptor tests; r=perftest-reviewers,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D109669
This commit is contained in:
11
.cron.yml
11
.cron.yml
@@ -96,17 +96,6 @@ jobs:
|
|||||||
by-project:
|
by-project:
|
||||||
mozilla-central: [{hour: 10, minute: 0}]
|
mozilla-central: [{hour: 10, minute: 0}]
|
||||||
|
|
||||||
- name: tp6m-fennec-v68
|
|
||||||
job:
|
|
||||||
type: decision-task
|
|
||||||
treeherder-symbol: f68
|
|
||||||
target-tasks-method: fennec_v68
|
|
||||||
include-push-tasks: true
|
|
||||||
run-on-projects:
|
|
||||||
- mozilla-central
|
|
||||||
when:
|
|
||||||
- {weekday: 'Saturday', hour: 5, minute: 0}
|
|
||||||
|
|
||||||
- name: live-site-perf-testing
|
- name: live-site-perf-testing
|
||||||
job:
|
job:
|
||||||
type: decision-task
|
type: decision-task
|
||||||
|
|||||||
@@ -747,50 +747,6 @@ def target_tasks_ship_geckoview(full_task_graph, parameters, graph_config):
|
|||||||
return [l for l, t in six.iteritems(full_task_graph.tasks) if filter(t)]
|
return [l for l, t in six.iteritems(full_task_graph.tasks) if filter(t)]
|
||||||
|
|
||||||
|
|
||||||
@_target_task("fennec_v68")
|
|
||||||
def target_tasks_fennec_v68(full_task_graph, parameters, graph_config):
|
|
||||||
"""
|
|
||||||
Select tasks required for running weekly fennec v68 tests
|
|
||||||
"""
|
|
||||||
|
|
||||||
def filter(task):
|
|
||||||
test_platform = task.attributes.get("test_platform")
|
|
||||||
try_name = task.attributes.get("raptor_try_name")
|
|
||||||
|
|
||||||
vismet = task.attributes.get("kind") == "visual-metrics-dep"
|
|
||||||
if vismet:
|
|
||||||
test_platform = task.task.get("extra").get("treeherder-platform")
|
|
||||||
try_name = task.label
|
|
||||||
|
|
||||||
if task.attributes.get("unittest_suite") != "raptor" and not vismet:
|
|
||||||
return False
|
|
||||||
if not accept_raptor_android_build(test_platform):
|
|
||||||
return False
|
|
||||||
if "-wr" not in try_name:
|
|
||||||
return False
|
|
||||||
|
|
||||||
if "-fennec" in try_name:
|
|
||||||
if "-power" in try_name:
|
|
||||||
return True
|
|
||||||
if "browsertime" in try_name:
|
|
||||||
if "tp6m" in try_name:
|
|
||||||
return True
|
|
||||||
elif "speedometer" in try_name:
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
return False
|
|
||||||
if "-youtube-playback" in try_name:
|
|
||||||
# Bug 1627898: VP9 tests don't work on G5
|
|
||||||
if "-g5-" in test_platform and "-vp9-" in try_name:
|
|
||||||
return False
|
|
||||||
# Bug 1639193: AV1 tests are currently broken
|
|
||||||
if "-av1-" in try_name:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
return [l for l, t in six.iteritems(full_task_graph.tasks) if filter(t)]
|
|
||||||
|
|
||||||
|
|
||||||
@_target_task("live_site_perf_testing")
|
@_target_task("live_site_perf_testing")
|
||||||
def target_tasks_live_site_perf_testing(full_task_graph, parameters, graph_config):
|
def target_tasks_live_site_perf_testing(full_task_graph, parameters, graph_config):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user