Bug 1786291 - Remove esr91 references r=jcristau

Differential Revision: https://phabricator.services.mozilla.com/D156972
This commit is contained in:
Johan Lorenzo
2022-09-19 13:23:03 +00:00
parent a521f9e8bd
commit 5547bd003c
16 changed files with 6 additions and 77 deletions

View File

@@ -532,30 +532,6 @@ def target_tasks_mozilla_release(full_task_graph, parameters, graph_config):
]
@_target_task("mozilla_esr91_tasks")
def target_tasks_mozilla_esr91(full_task_graph, parameters, graph_config):
"""Select the set of tasks required for a promotable beta or release build
of desktop, without android CI. The candidates build process involves a pipeline
of builds and signing, but does not include beetmover or balrog jobs."""
def filter(task):
if not filter_release_tasks(task, parameters):
return False
if not standard_filter(task, parameters):
return False
platform = task.attributes.get("build_platform")
# Android is not built on esr91.
if platform and "android" in platform:
return False
return True
return [l for l, t in full_task_graph.tasks.items() if filter(t)]
@_target_task("mozilla_esr102_tasks")
def target_tasks_mozilla_esr102(full_task_graph, parameters, graph_config):
"""Select the set of tasks required for a promotable beta or release build
@@ -1101,7 +1077,6 @@ def target_tasks_release_simulation(full_task_graph, parameters, graph_config):
"nightly": "mozilla-central",
"beta": "mozilla-beta",
"release": "mozilla-release",
"esr91": "mozilla-esr91",
"esr102": "mozilla-esr102",
}
target_project = project_by_release.get(parameters["release_type"])