mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
c6cd1d7c94
https://github.com/mozilla-mobile/fenix/pull/22125 stopped listening to these events but the supporting code was still around.
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from taskgraph.target_tasks import _target_task
|
|
|
|
|
|
@_target_task('release')
|
|
def target_tasks_default(full_task_graph, parameters, graph_config):
|
|
|
|
# TODO Use shipping-phase
|
|
def filter(task, parameters):
|
|
return task.attributes.get("release-type", "") == parameters["release_type"]
|
|
|
|
return [l for l, t in full_task_graph.tasks.items() if filter(t, parameters)]
|
|
|
|
|
|
@_target_task("nightly")
|
|
def target_tasks_nightly(full_task_graph, parameters, graph_config):
|
|
"""Select the set of tasks required for a nightly build."""
|
|
|
|
def filter(task, parameters):
|
|
return task.attributes.get("nightly", False)
|
|
|
|
return [l for l, t in full_task_graph.tasks.items() if filter(t, parameters)]
|
|
|
|
|
|
def _filter_fennec(fennec_type, task, parameters):
|
|
return task.attributes.get("build-type", "") == "fennec-{}".format(fennec_type)
|
|
|
|
|
|
@_target_task("fennec-production")
|
|
def target_tasks_fennec_nightly(full_task_graph, parameters, graph_config):
|
|
"""Select the set of tasks required for a production build signed with the fennec key."""
|
|
|
|
return [l for l, t in full_task_graph.tasks.items() if _filter_fennec("production", t, parameters)]
|
|
|
|
|
|
@_target_task("bump_android_components")
|
|
def target_tasks_bump_android_components(full_task_graph, parameters, graph_config):
|
|
"""Select the set of tasks required to update android components."""
|
|
|
|
def filter(task, parameters):
|
|
return task.attributes.get("bump-type", "") == "android-components"
|
|
|
|
return [l for l, t in full_task_graph.tasks.items() if filter(t, parameters)]
|
|
|
|
|
|
@_target_task("screenshots")
|
|
def target_tasks_screnshots(full_task_graph, parameters, graph_config):
|
|
"""Select the set of tasks required to generate screenshots on a real device."""
|
|
|
|
def filter(task, parameters):
|
|
return task.attributes.get("screenshots", False)
|
|
|
|
return [l for l, t in full_task_graph.tasks.items() if filter(t, parameters)]
|