1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
# 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.
"""
import logging
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.dependencies import get_dependencies, get_primary_dependency
from taskgraph.util.schema import Schema
from taskgraph.util.taskcluster import get_artifact_prefix
from taskgraph.util.treeherder import inherit_treeherder_from_dep, replace_group
from voluptuous import Optional, Required
from gecko_taskgraph.transforms.beetmover import craft_release_properties
from gecko_taskgraph.transforms.task import task_description_schema
from gecko_taskgraph.util.attributes import (
copy_attributes_from_dependent_job,
sorted_unique_list,
)
from gecko_taskgraph.util.partials import (
get_balrog_platform_name,
get_partials_artifacts_from_params,
get_partials_info_from_params,
)
from gecko_taskgraph.util.scriptworker import (
generate_beetmover_artifact_map,
generate_beetmover_partials_artifact_map,
generate_beetmover_upstream_artifacts,
get_beetmover_action_scope,
get_beetmover_bucket_scope,
)
logger = logging.getLogger(__name__)
beetmover_description_schema = Schema(
{
# unique label to describe this beetmover task, defaults to {dep.label}-beetmover
Required("label"): str,
Required("dependencies"): task_description_schema["dependencies"],
# treeherder is allowed here to override any defaults we use for beetmover. See
# taskcluster/gecko_taskgraph/transforms/task.py for the schema details, and the
# below transforms for defaults of various values.
Optional("treeherder"): task_description_schema["treeherder"],
Optional("attributes"): task_description_schema["attributes"],
# locale is passed only for l10n beetmoving
Optional("locale"): str,
Required("shipping-phase"): task_description_schema["shipping-phase"],
Optional("task-from"): task_description_schema["task-from"],
Optional("run-on-repo-type"): task_description_schema["run-on-repo-type"],
}
)
transforms = TransformSequence()
@transforms.add
def remove_name(config, jobs):
for job in jobs:
if "name" in job:
del job["name"]
yield job
transforms.add_validate(beetmover_description_schema)
def get_label_by_suffix(labels: list, suffix: str):
"""
Given list of labels, returns the label with provided suffix
Raises exception if more than one label is found.
Args:
labels (list): List of labels
suffix (str): Suffix for the desired label
Returns
str: The desired label
"""
labels = [l for l in labels if l.endswith(suffix)]
if len(labels) > 1:
raise Exception(
f"There should only be a single label with suffix: {suffix} - found {len(labels)}"
)
return labels[0]
@transforms.add
def gather_required_signoffs(config, jobs):
for job in jobs:
job.setdefault("attributes", {})["required_signoffs"] = sorted_unique_list(
*(
dep.attributes.get("required_signoffs", [])
for dep in get_dependencies(config, job)
)
)
yield job
@transforms.add
def make_task_description(config, jobs):
for job in jobs:
dep_job = get_primary_dependency(config, job)
assert dep_job
attributes = dep_job.attributes
treeherder = inherit_treeherder_from_dep(job, dep_job)
upstream_symbol = dep_job.task["extra"]["treeherder"]["symbol"]
if "build" in job["dependencies"]:
build_label = job["dependencies"]["build"]
build_dep = config.kind_dependencies_tasks[build_label]
upstream_symbol = build_dep.task["extra"]["treeherder"]["symbol"]
treeherder.setdefault("symbol", replace_group(upstream_symbol, "BMR"))
label = job["label"]
description = (
"Beetmover submission for locale '{locale}' for build '"
"{build_platform}/{build_type}'".format(
locale=attributes.get("locale", "en-US"),
build_platform=attributes.get("build_platform"),
build_type=attributes.get("build_type"),
)
)
upstream_deps = {
k: config.kind_dependencies_tasks[v] for k, v in job["dependencies"].items()
}
signing_name = "build-signing"
build_name = "build"
repackage_name = "repackage"
repackage_signing_name = "repackage-signing"
msi_signing_name = "repackage-signing-msi"
msix_signing_name = "repackage-signing-shippable-l10n-msix"
mar_signing_name = "mar-signing"
attribution_name = "attribution"
repackage_deb_name = "repackage-deb"
if job.get("locale"):
signing_name = "shippable-l10n-signing"
build_name = "shippable-l10n"
repackage_name = "repackage-l10n"
repackage_signing_name = "repackage-signing-l10n"
mar_signing_name = "mar-signing-l10n"
attribution_name = "attribution-l10n"
repackage_deb_name = "repackage-deb-l10n"
# The upstream "signing" task for macosx is either *-mac-signing or *-mac-notarization
if attributes.get("build_platform", "").startswith("macosx"):
signing_name = None
# We use the signing task on level 1 and notarization on level 3
if int(config.params.get("level", 0)) < 3:
signing_name = get_label_by_suffix(job["dependencies"], "-mac-signing")
else:
signing_name = get_label_by_suffix(
job["dependencies"], "-mac-notarization"
)
if not signing_name:
raise Exception("Could not find upstream kind for mac signing.")
dependencies = {
"build": upstream_deps[build_name],
"signing": upstream_deps[signing_name],
}
if repackage_name in upstream_deps:
dependencies["repackage"] = upstream_deps[repackage_name]
if mar_signing_name in upstream_deps:
dependencies["mar-signing"] = upstream_deps[mar_signing_name]
if "partials-signing" in upstream_deps:
dependencies["partials-signing"] = upstream_deps["partials-signing"]
if msi_signing_name in upstream_deps:
dependencies[msi_signing_name] = upstream_deps[msi_signing_name]
if msix_signing_name in upstream_deps:
dependencies[msix_signing_name] = upstream_deps[msix_signing_name]
if repackage_signing_name in upstream_deps:
dependencies["repackage-signing"] = upstream_deps[repackage_signing_name]
if attribution_name in upstream_deps:
dependencies[attribution_name] = upstream_deps[attribution_name]
if repackage_deb_name in upstream_deps:
dependencies[repackage_deb_name] = upstream_deps[repackage_deb_name]
for kind in ("upload-symbols", "upload-symbols-dummy"):
if kind in upstream_deps:
dependencies[kind] = upstream_deps[kind]
attributes = copy_attributes_from_dependent_job(dep_job)
attributes.update(job.get("attributes", {}))
if job.get("locale"):
attributes["locale"] = job["locale"]
bucket_scope = get_beetmover_bucket_scope(config)
action_scope = get_beetmover_action_scope(config)
task = {
"label": label,
"description": description,
"worker-type": "beetmover",
"scopes": [bucket_scope, action_scope],
"dependencies": dependencies,
"attributes": attributes,
"run-on-projects": dep_job.attributes.get("run_on_projects"),
"run-on-repo-type": job.get("run-on-repo-type", ["git", "hg"]),
"treeherder": treeherder,
"shipping-phase": job["shipping-phase"],
"shipping-product": job.get("shipping-product"),
}
yield task
def generate_partials_upstream_artifacts(job, artifacts, platform, locale=None):
artifact_prefix = get_artifact_prefix(job)
if locale and locale != "en-US":
artifact_prefix = f"{artifact_prefix}/{locale}"
upstream_artifacts = [
{
"taskId": {"task-reference": "<partials-signing>"},
"taskType": "signing",
"paths": [f"{artifact_prefix}/{path}" for path, _ in artifacts],
"locale": locale or "en-US",
}
]
return upstream_artifacts
@transforms.add
def make_task_worker(config, jobs):
for job in jobs:
locale = job["attributes"].get("locale")
platform = job["attributes"]["build_platform"]
worker = {
"implementation": "beetmover",
"release-properties": craft_release_properties(config, job),
"upstream-artifacts": generate_beetmover_upstream_artifacts(
config, job, platform, locale
),
"artifact-map": generate_beetmover_artifact_map(
config, job, platform=platform, locale=locale
),
}
if locale:
worker["locale"] = locale
job["worker"] = worker
yield job
@transforms.add
def strip_unwanted_langpacks_from_worker(config, jobs):
"""Strips out langpacks where we didn't sign them.
This explicitly deletes langpacks from upstream artifacts and from artifact-maps.
Due to limitations in declarative artifacts, doing this was our easiest way right now.
"""
ALWAYS_OK_PLATFORMS = {"linux64-shippable", "linux64-devedition"}
OSX_OK_PLATFORMS = {"macosx64-shippable", "macosx64-devedition"}
for job in jobs:
platform = job["attributes"].get("build_platform")
if platform in ALWAYS_OK_PLATFORMS:
# No need to strip anything
yield job
continue
for map in job["worker"].get("artifact-map", [])[:]:
if not any([path.endswith("target.langpack.xpi") for path in map["paths"]]):
continue
if map["locale"] == "ja-JP-mac":
# This locale should only exist on mac
assert platform in OSX_OK_PLATFORMS
continue
# map[paths] is being modified while iterating, so we need to resolve the
# ".keys()" iterator up front by throwing it into a list.
for path in list(map["paths"].keys()):
if path.endswith("target.langpack.xpi"):
del map["paths"][path]
if map["paths"] == {}:
job["worker"]["artifact-map"].remove(map)
for artifact in job["worker"].get("upstream-artifacts", []):
if not any(
[path.endswith("target.langpack.xpi") for path in artifact["paths"]]
):
continue
if artifact["locale"] == "ja-JP-mac":
# This locale should only exist on mac
assert platform in OSX_OK_PLATFORMS
continue
artifact["paths"] = [
path
for path in artifact["paths"]
if not path.endswith("target.langpack.xpi")
]
if artifact["paths"] == []:
job["worker"]["upstream-artifacts"].remove(artifact)
yield job
@transforms.add
def make_partials_artifacts(config, jobs):
for job in jobs:
locale = job["attributes"].get("locale")
if not locale:
locale = "en-US"
platform = job["attributes"]["build_platform"]
if "partials-signing" not in job["dependencies"]:
yield job
continue
balrog_platform = get_balrog_platform_name(platform)
artifacts = get_partials_artifacts_from_params(
config.params.get("release_history"), balrog_platform, locale
)
upstream_artifacts = generate_partials_upstream_artifacts(
job, artifacts, balrog_platform, locale
)
job["worker"]["upstream-artifacts"].extend(upstream_artifacts)
extra = list()
partials_info = get_partials_info_from_params(
config.params.get("release_history"), balrog_platform, locale
)
job["worker"]["artifact-map"].extend(
generate_beetmover_partials_artifact_map(
config, job, partials_info, platform=platform, locale=locale
)
)
for artifact in partials_info:
artifact_extra = {
"locale": locale,
"artifact_name": artifact,
"buildid": partials_info[artifact]["buildid"],
"platform": balrog_platform,
}
for rel_attr in ("previousBuildNumber", "previousVersion"):
if partials_info[artifact].get(rel_attr):
artifact_extra[rel_attr] = partials_info[artifact][rel_attr]
extra.append(artifact_extra)
job.setdefault("extra", {})
job["extra"]["partials"] = extra
yield job
@transforms.add
def convert_deps(config, jobs):
for job in jobs:
job["dependencies"] = {
name: dep_job.label for name, dep_job in job["dependencies"].items()
}
yield job
|