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
|
# 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_primary_dependency
from taskgraph.util.schema import Schema
from taskgraph.util.taskcluster import get_artifact_prefix
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,
)
from gecko_taskgraph.util.partners import get_ftp_platform, get_partner_config_by_kind
from gecko_taskgraph.util.scriptworker import (
add_scope_prefix,
get_beetmover_bucket_scope,
)
logger = logging.getLogger(__name__)
beetmover_description_schema = Schema(
{
# unique label to describe this beetmover task, defaults to {dep.label}-beetmover
Optional("label"): str,
Required("partner-path"): str,
Optional("extra"): object,
Optional("attributes"): task_description_schema["attributes"],
Optional("dependencies"): task_description_schema["dependencies"],
Required("shipping-phase"): task_description_schema["shipping-phase"],
Optional("shipping-product"): task_description_schema["shipping-product"],
Optional("priority"): task_description_schema["priority"],
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)
@transforms.add
def make_task_description(config, jobs):
for job in jobs:
dep_job = get_primary_dependency(config, job)
assert dep_job
repack_id = dep_job.task.get("extra", {}).get("repack_id")
if not repack_id:
raise Exception("Cannot find repack id!")
attributes = dep_job.attributes
build_platform = attributes.get("build_platform")
if not build_platform:
raise Exception("Cannot find build platform!")
label = dep_job.label.replace("repackage-signing-l10n", "beetmover-")
label = dep_job.label.replace("repackage-signing-", "beetmover-")
label = label.replace("repackage-", "beetmover-")
label = label.replace("chunking-dummy-", "beetmover-")
description = (
"Beetmover submission for repack_id '{repack_id}' for build '"
"{build_platform}/{build_type}'".format(
repack_id=repack_id,
build_platform=build_platform,
build_type=attributes.get("build_type"),
)
)
dependencies = {}
base_label = "release-partner-repack"
if "eme" in config.kind:
base_label = "release-eme-free-repack"
dependencies["build"] = f"{base_label}-{build_platform}"
if "macosx" in build_platform or "win" in build_platform:
dependencies["repackage"] = "{}-repackage-{}-{}".format(
base_label, build_platform, repack_id.replace("/", "-")
)
dependencies["repackage-signing"] = "{}-repackage-signing-{}-{}".format(
base_label, build_platform, repack_id.replace("/", "-")
)
attributes = copy_attributes_from_dependent_job(dep_job)
task = {
"label": label,
"description": description,
"dependencies": dependencies,
"attributes": attributes,
"run-on-projects": dep_job.attributes.get("run_on_projects"),
"shipping-phase": job["shipping-phase"],
"shipping-product": job.get("shipping-product"),
"partner-path": job["partner-path"],
"extra": {
"repack_id": repack_id,
},
}
# we may have reduced the priority for partner jobs, otherwise task.py will set it
if job.get("priority"):
task["priority"] = job["priority"]
yield task
@transforms.add
def populate_scopes_and_worker_type(config, jobs):
bucket_scope = get_beetmover_bucket_scope(config)
action_scope = add_scope_prefix(config, "beetmover:action:push-to-partner")
for job in jobs:
job["scopes"] = [bucket_scope, action_scope]
job["worker-type"] = "beetmover"
yield job
def generate_upstream_artifacts(
job,
build_task_ref,
repackage_task_ref,
repackage_signing_task_ref,
platform,
repack_id,
partner_path,
repack_stub_installer=False,
):
upstream_artifacts = []
artifact_prefix = get_artifact_prefix(job)
if "linux" in platform:
upstream_artifacts.append(
{
"taskId": {"task-reference": build_task_ref},
"taskType": "build",
"paths": [f"{artifact_prefix}/{repack_id}/target.tar.xz"],
"locale": partner_path,
}
)
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [f"{artifact_prefix}/{repack_id}/target.tar.xz.asc"],
"locale": partner_path,
}
)
elif "macosx" in platform:
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_task_ref},
"taskType": "repackage",
"paths": [f"{artifact_prefix}/{repack_id}/target.dmg"],
"locale": partner_path,
}
)
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [f"{artifact_prefix}/{repack_id}/target.dmg.asc"],
"locale": partner_path,
}
)
elif "win" in platform:
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [f"{artifact_prefix}/{repack_id}/target.installer.exe"],
"locale": partner_path,
}
)
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [f"{artifact_prefix}/{repack_id}/target.installer.exe.asc"],
"locale": partner_path,
}
)
if platform.startswith("win32") and repack_stub_installer:
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [
f"{artifact_prefix}/{repack_id}/target.stub-installer.exe"
],
"locale": partner_path,
}
)
upstream_artifacts.append(
{
"taskId": {"task-reference": repackage_signing_task_ref},
"taskType": "repackage",
"paths": [
f"{artifact_prefix}/{repack_id}/target.stub-installer.exe.asc"
],
"locale": partner_path,
}
)
if not upstream_artifacts:
raise Exception("Couldn't find any upstream artifacts.")
return upstream_artifacts
@transforms.add
def make_task_worker(config, jobs):
for job in jobs:
platform = job["attributes"]["build_platform"]
repack_id = job["extra"]["repack_id"]
partner, subpartner, locale = job["extra"]["repack_id"].split("/")
partner_config = get_partner_config_by_kind(config, config.kind)
repack_stub_installer = partner_config[partner][subpartner].get(
"repack_stub_installer"
)
build_task = None
repackage_task = None
repackage_signing_task = None
for dependency in job["dependencies"].keys():
if "repackage-signing" in dependency:
repackage_signing_task = dependency
elif "repackage" in dependency:
repackage_task = dependency
else:
build_task = "build"
build_task_ref = "<" + str(build_task) + ">"
repackage_task_ref = "<" + str(repackage_task) + ">"
repackage_signing_task_ref = "<" + str(repackage_signing_task) + ">"
# generate the partner path; we'll send this to beetmover as the "locale"
ftp_platform = get_ftp_platform(platform)
repl_dict = {
"build_number": config.params["build_number"],
"locale": locale,
"partner": partner,
"platform": ftp_platform,
"release_partner_build_number": config.params[
"release_partner_build_number"
],
"subpartner": subpartner,
"version": config.params["version"],
}
partner_path = job["partner-path"].format(**repl_dict)
del job["partner-path"]
worker = {
"implementation": "beetmover",
"release-properties": craft_release_properties(config, job),
"upstream-artifacts": generate_upstream_artifacts(
job,
build_task_ref,
repackage_task_ref,
repackage_signing_task_ref,
platform,
repack_id,
partner_path,
repack_stub_installer,
),
}
job["worker"] = worker
yield job
|