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
|
# 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 partials task into an actual task description.
"""
import logging
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.taskcluster import get_artifact_prefix
from taskgraph.util.treeherder import inherit_treeherder_from_dep
from gecko_taskgraph.util.attributes import (
copy_attributes_from_dependent_job,
release_level,
)
from gecko_taskgraph.util.partials import get_builds
from gecko_taskgraph.util.platforms import architecture
logger = logging.getLogger(__name__)
transforms = TransformSequence()
def _generate_task_output_files(job, filenames, locale=None):
locale_output_path = f"{locale}/" if locale else ""
artifact_prefix = get_artifact_prefix(job)
data = list()
for filename in filenames:
data.append(
{
"type": "file",
"path": f"/home/worker/artifacts/{filename}",
"name": f"{artifact_prefix}/{locale_output_path}{filename}",
}
)
data.append(
{
"type": "file",
"path": "/home/worker/artifacts/manifest.json",
"name": f"{artifact_prefix}/{locale_output_path}manifest.json",
}
)
return data
def identify_desired_signing_keys(project, product):
if project in ["mozilla-central", "comm-central", "oak"]:
return "nightly"
if project == "mozilla-beta":
if product == "devedition":
return "nightly"
return "release"
if (
project in ["mozilla-release", "comm-beta"]
or project.startswith("mozilla-esr")
or project.startswith("comm-esr")
):
return "release"
return "dep1"
@transforms.add
def make_task_description(config, jobs):
# If no balrog release history, then don't generate partials
if not config.params.get("release_history"):
return
for job in jobs:
dep_job = job["primary-dependency"]
treeherder = inherit_treeherder_from_dep(job, dep_job)
treeherder.setdefault("symbol", "p(N)")
label = job.get("label", f"partials-{dep_job.label}")
dependencies = {dep_job.kind: dep_job.label}
attributes = copy_attributes_from_dependent_job(dep_job)
locale = dep_job.attributes.get("locale")
if locale:
attributes["locale"] = locale
treeherder["symbol"] = f"p({locale})"
attributes["shipping_phase"] = job["shipping-phase"]
build_locale = locale or "en-US"
build_platform = attributes["build_platform"]
builds = get_builds(
config.params["release_history"], build_platform, build_locale
)
# If the list is empty there's no available history for this platform
# and locale combination, so we can't build any partials.
if not builds:
continue
extra = {"funsize": {"partials": list()}}
update_number = 1
locale_suffix = ""
if locale:
locale_suffix = f"{locale}/"
artifact_path = "<{}/{}/{}target.complete.mar>".format(
dep_job.kind,
get_artifact_prefix(dep_job),
locale_suffix,
)
for build in sorted(builds):
partial_info = {
"locale": build_locale,
"from_mar": builds[build]["mar_url"],
"to_mar": {"artifact-reference": artifact_path},
"branch": config.params["project"],
"update_number": update_number,
"dest_mar": build,
}
if "product" in builds[build]:
partial_info["product"] = builds[build]["product"]
if "previousVersion" in builds[build]:
partial_info["previousVersion"] = builds[build]["previousVersion"]
if "previousBuildNumber" in builds[build]:
partial_info["previousBuildNumber"] = builds[build][
"previousBuildNumber"
]
extra["funsize"]["partials"].append(partial_info)
update_number += 1
level = config.params["level"]
worker = {
"artifacts": _generate_task_output_files(dep_job, builds.keys(), locale),
"implementation": "docker-worker",
"docker-image": {"in-tree": "funsize-update-generator"},
"os": "linux",
"max-run-time": 3600 if "asan" in dep_job.label else 1800,
"chain-of-trust": True,
"taskcluster-proxy": True,
"env": {
"SIGNING_CERT": identify_desired_signing_keys(
config.params["project"], config.params["release_product"]
),
"EXTRA_PARAMS": f"--arch={architecture(build_platform)}",
"MAR_CHANNEL_ID": attributes["mar-channel-id"],
},
}
if release_level(config.params["project"]) == "staging":
worker["env"]["FUNSIZE_ALLOW_STAGING_PREFIXES"] = "true"
task = {
"label": label,
"description": f"{dep_job.description} Partials",
"worker-type": "b-linux-gcp",
"dependencies": dependencies,
"scopes": [],
"attributes": attributes,
"run-on-projects": dep_job.attributes.get("run_on_projects"),
"treeherder": treeherder,
"extra": extra,
"worker": worker,
}
# We only want caching on linux/windows due to bug 1436977
if int(level) == 3 and any(
[build_platform.startswith(prefix) for prefix in ["linux", "win"]]
):
task["scopes"].append(
"auth:aws-s3:read-write:tc-gp-private-1d-us-east-1/releng/mbsdiff-cache/"
)
yield task
|