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
|
# 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/.
"""
Create a strings build artifact to be consumed by shippable-l10n.
"""
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.schema import resolve_keyed_by
transforms = TransformSequence()
@transforms.add
def handle_keyed_by(config, jobs):
"""Resolve fields that can be keyed by platform, etc."""
for job in jobs:
resolve_keyed_by(
job,
"locale-list",
item_name=job["name"],
**{"release-type": config.params["release_type"]},
)
yield job
@transforms.add
def make_job_description(config, jobs):
for job in jobs:
locale_list = job.pop("locale-list")
comm_locales_file = job.pop("comm-locales-file")
browser_locales_file = job.pop("browser-locales-file")
job["run"].update(
{
"job-script": "comm/taskcluster/scripts/build-l10n-pre.sh",
"options": [
f"locale-list={locale_list}",
f"comm-locales-file={comm_locales_file}",
f"browser-locales-file={browser_locales_file}",
],
}
)
yield job
|