2018-08-16 19:23:15 +03:00
|
|
|
# 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 beetmover task into an actual task description.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
2019-07-05 18:19:00 +03:00
|
|
|
from copy import deepcopy
|
2018-11-28 14:13:52 +03:00
|
|
|
|
2020-01-21 20:12:08 +03:00
|
|
|
from six import text_type
|
2018-10-25 01:41:38 +03:00
|
|
|
from taskgraph.loader.single_dep import schema
|
2018-08-16 19:23:15 +03:00
|
|
|
from taskgraph.transforms.base import TransformSequence
|
|
|
|
from taskgraph.transforms.beetmover import (
|
|
|
|
craft_release_properties as beetmover_craft_release_properties,
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2018-08-16 19:23:15 +03:00
|
|
|
from taskgraph.util.attributes import copy_attributes_from_dependent_job
|
2019-07-05 18:19:00 +03:00
|
|
|
from taskgraph.util.declarative_artifacts import (
|
|
|
|
get_geckoview_template_vars,
|
|
|
|
get_geckoview_upstream_artifacts,
|
|
|
|
get_geckoview_artifact_id,
|
|
|
|
)
|
2018-11-21 02:44:12 +03:00
|
|
|
from taskgraph.util.schema import resolve_keyed_by, optionally_keyed_by
|
2020-01-23 19:54:13 +03:00
|
|
|
from taskgraph.util.scriptworker import generate_beetmover_artifact_map
|
2018-08-16 19:23:15 +03:00
|
|
|
from taskgraph.transforms.task import task_description_schema
|
|
|
|
from voluptuous import Required, Optional
|
|
|
|
|
|
|
|
|
2018-10-25 01:41:38 +03:00
|
|
|
beetmover_description_schema = schema.extend(
|
|
|
|
{
|
2020-01-21 20:12:08 +03:00
|
|
|
Optional("label"): text_type,
|
2018-08-16 19:23:15 +03:00
|
|
|
Optional("treeherder"): task_description_schema["treeherder"],
|
2018-10-29 14:11:46 +03:00
|
|
|
Required("run-on-projects"): task_description_schema["run-on-projects"],
|
|
|
|
Required("run-on-hg-branches"): task_description_schema["run-on-hg-branches"],
|
2020-01-21 20:12:08 +03:00
|
|
|
Optional("bucket-scope"): optionally_keyed_by("release-level", text_type),
|
2018-10-29 14:11:46 +03:00
|
|
|
Optional("shipping-phase"): optionally_keyed_by(
|
|
|
|
"project", task_description_schema["shipping-phase"]
|
|
|
|
),
|
2018-08-16 19:23:15 +03:00
|
|
|
Optional("shipping-product"): task_description_schema["shipping-product"],
|
2018-11-28 14:13:52 +03:00
|
|
|
Optional("attributes"): task_description_schema["attributes"],
|
2018-08-16 19:23:15 +03:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-11-21 02:44:12 +03:00
|
|
|
transforms = TransformSequence()
|
|
|
|
transforms.add_validate(beetmover_description_schema)
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
|
2018-10-29 14:11:46 +03:00
|
|
|
@transforms.add
|
|
|
|
def resolve_keys(config, jobs):
|
|
|
|
for job in jobs:
|
|
|
|
resolve_keyed_by(
|
|
|
|
job,
|
|
|
|
"run-on-hg-branches",
|
|
|
|
item_name=job["label"],
|
|
|
|
project=config.params["project"],
|
|
|
|
)
|
|
|
|
resolve_keyed_by(
|
|
|
|
job,
|
|
|
|
"shipping-phase",
|
|
|
|
item_name=job["label"],
|
|
|
|
project=config.params["project"],
|
|
|
|
)
|
|
|
|
resolve_keyed_by(
|
|
|
|
job,
|
|
|
|
"bucket-scope",
|
|
|
|
item_name=job["label"],
|
|
|
|
**{"release-level": config.params.release_level()}
|
|
|
|
)
|
|
|
|
yield job
|
|
|
|
|
|
|
|
|
2018-08-16 19:23:15 +03:00
|
|
|
@transforms.add
|
|
|
|
def make_task_description(config, jobs):
|
|
|
|
for job in jobs:
|
2018-10-25 01:41:38 +03:00
|
|
|
dep_job = job["primary-dependency"]
|
2019-09-10 16:38:47 +03:00
|
|
|
attributes = copy_attributes_from_dependent_job(dep_job)
|
|
|
|
attributes.update(job.get("attributes", {}))
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2018-08-16 19:23:15 +03:00
|
|
|
treeherder = job.get("treeherder", {})
|
|
|
|
treeherder.setdefault("symbol", "BM-gv")
|
|
|
|
dep_th_platform = (
|
|
|
|
dep_job.task.get("extra", {})
|
|
|
|
.get("treeherder", {})
|
|
|
|
.get("machine", {})
|
|
|
|
.get("platform", "")
|
2020-10-26 21:34:53 +03:00
|
|
|
)
|
2018-08-16 19:23:15 +03:00
|
|
|
treeherder.setdefault("platform", "{}/opt".format(dep_th_platform))
|
2018-08-20 17:08:19 +03:00
|
|
|
treeherder.setdefault("tier", 2)
|
2018-08-16 19:23:15 +03:00
|
|
|
treeherder.setdefault("kind", "build")
|
|
|
|
label = job["label"]
|
|
|
|
description = (
|
|
|
|
"Beetmover submission for geckoview"
|
|
|
|
"{build_platform}/{build_type}'".format(
|
|
|
|
build_platform=attributes.get("build_platform"),
|
|
|
|
build_type=attributes.get("build_type"),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-07-05 18:19:00 +03:00
|
|
|
dependencies = deepcopy(dep_job.dependencies)
|
|
|
|
dependencies[dep_job.kind] = dep_job.label
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
if job.get("locale"):
|
|
|
|
attributes["locale"] = job["locale"]
|
|
|
|
|
2018-10-29 14:11:46 +03:00
|
|
|
attributes["run_on_hg_branches"] = job["run-on-hg-branches"]
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
task = {
|
|
|
|
"label": label,
|
|
|
|
"description": description,
|
2020-01-23 19:54:13 +03:00
|
|
|
"worker-type": "beetmover",
|
2018-08-16 19:23:15 +03:00
|
|
|
"scopes": [
|
|
|
|
job["bucket-scope"],
|
|
|
|
"project:releng:beetmover:action:push-to-maven",
|
|
|
|
],
|
|
|
|
"dependencies": dependencies,
|
|
|
|
"attributes": attributes,
|
2018-10-29 14:11:46 +03:00
|
|
|
"run-on-projects": job["run-on-projects"],
|
2018-08-16 19:23:15 +03:00
|
|
|
"treeherder": treeherder,
|
2018-10-11 02:08:18 +03:00
|
|
|
"shipping-phase": job["shipping-phase"],
|
2018-08-16 19:23:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
yield task
|
|
|
|
|
|
|
|
|
|
|
|
@transforms.add
|
|
|
|
def make_task_worker(config, jobs):
|
|
|
|
for job in jobs:
|
2019-07-05 18:19:00 +03:00
|
|
|
job["worker"] = {
|
|
|
|
"artifact-map": generate_beetmover_artifact_map(
|
|
|
|
config,
|
|
|
|
job,
|
2019-07-08 16:18:23 +03:00
|
|
|
**get_geckoview_template_vars(
|
|
|
|
config,
|
|
|
|
job["attributes"]["build_platform"],
|
|
|
|
job["attributes"].get("update-channel"),
|
|
|
|
)
|
2019-07-05 18:19:00 +03:00
|
|
|
),
|
2018-08-16 19:23:15 +03:00
|
|
|
"implementation": "beetmover-maven",
|
|
|
|
"release-properties": craft_release_properties(config, job),
|
2019-07-05 18:19:00 +03:00
|
|
|
"upstream-artifacts": get_geckoview_upstream_artifacts(config, job),
|
2018-08-16 19:23:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
yield job
|
|
|
|
|
|
|
|
|
|
|
|
def craft_release_properties(config, job):
|
2019-07-05 18:19:00 +03:00
|
|
|
release_properties = beetmover_craft_release_properties(config, job)
|
2018-08-16 19:23:15 +03:00
|
|
|
|
2019-07-05 18:19:00 +03:00
|
|
|
release_properties["artifact-id"] = get_geckoview_artifact_id(
|
2020-05-21 19:32:06 +03:00
|
|
|
config,
|
|
|
|
job["attributes"]["build_platform"],
|
|
|
|
job["attributes"].get("update-channel"),
|
2018-08-16 19:23:15 +03:00
|
|
|
)
|
2019-07-05 18:19:00 +03:00
|
|
|
release_properties["app-name"] = "geckoview"
|
2018-08-16 19:23:15 +03:00
|
|
|
|
2019-07-05 18:19:00 +03:00
|
|
|
return release_properties
|