fune/taskcluster/taskgraph/transforms/release_flatpak_push.py
Andrew Halberstadt d024a31639 Bug 1726573 - Run 'pyupgrade --py36-plus' on taskcluster/taskgraph directory, r=taskgraph-reviewers,bhearsum
This patch was generated via:

  $ pyupgrade --py36-plus $(find taskcluster/taskgraph -name "*.py" -type f)
  $ autoflake --remove-all-unused-imports -i $(find taskcluster/taskgraph -name "*.py" -type f)

The same set of commands are being applied to standalone taskgraph as well so
they remain in sync.

Differential Revision: https://phabricator.services.mozilla.com/D123234
2021-08-24 19:35:46 +00:00

79 lines
2.7 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/.
"""
Transform the release-flatpak-push kind into an actual task description.
"""
from taskgraph.transforms.base import TransformSequence
from taskgraph.transforms.task import task_description_schema
from taskgraph.util.schema import optionally_keyed_by, resolve_keyed_by, Schema
from taskgraph.util.scriptworker import add_scope_prefix
from voluptuous import Optional, Required
push_flatpak_description_schema = Schema(
{
Required("name"): str,
Required("job-from"): task_description_schema["job-from"],
Required("dependencies"): task_description_schema["dependencies"],
Required("description"): task_description_schema["description"],
Required("treeherder"): task_description_schema["treeherder"],
Required("run-on-projects"): task_description_schema["run-on-projects"],
Required("worker-type"): optionally_keyed_by("release-level", str),
Required("worker"): object,
Optional("scopes"): [str],
Required("shipping-phase"): task_description_schema["shipping-phase"],
Required("shipping-product"): task_description_schema["shipping-product"],
Optional("extra"): task_description_schema["extra"],
Optional("attributes"): task_description_schema["attributes"],
}
)
transforms = TransformSequence()
transforms.add_validate(push_flatpak_description_schema)
@transforms.add
def make_task_description(config, jobs):
for job in jobs:
if len(job["dependencies"]) != 1:
raise Exception("Exactly 1 dependency is required")
job["worker"]["upstream-artifacts"] = generate_upstream_artifacts(
job["dependencies"]
)
resolve_keyed_by(
job,
"worker.channel",
item_name=job["name"],
**{"release-type": config.params["release_type"]},
)
resolve_keyed_by(
job,
"worker-type",
item_name=job["name"],
**{"release-level": config.params.release_level()},
)
if config.params.release_level() == "production":
job.setdefault("scopes", []).append(
add_scope_prefix(
config,
"flathub:firefox:{}".format(job["worker"]["channel"]),
)
)
yield job
def generate_upstream_artifacts(dependencies):
return [
{
"taskId": {"task-reference": f"<{task_kind}>"},
"taskType": "build",
"paths": ["public/build/target.flatpak.tar.xz"],
}
for task_kind in dependencies.keys()
]