Bug 1614998 - Move nightly-l10n to shippable-l10n. r=aki

Differential Revision: https://phabricator.services.mozilla.com/D62639

--HG--
rename : taskcluster/ci/nightly-l10n/kind.yml => taskcluster/ci/shippable-l10n/kind.yml
extra : moz-landing-system : lando
This commit is contained in:
Justin Wood 2020-02-12 22:29:02 +00:00
Родитель 01ccfa4e07
Коммит 41fceb0658
8 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -17,7 +17,7 @@ kind-dependencies:
- build-signing
- repackage
- repackage-signing
- nightly-l10n
- shippable-l10n
- shippable-l10n-signing
- repackage-l10n
- repackage-signing-l10n

Просмотреть файл

@ -10,7 +10,7 @@ transforms:
kind-dependencies:
- build
- nightly-l10n
- shippable-l10n
only-for-build-platforms:

Просмотреть файл

@ -11,7 +11,7 @@ transforms:
- taskgraph.transforms.task:transforms
kind-dependencies:
- nightly-l10n
- shippable-l10n
only-for-attributes:
- nightly

Просмотреть файл

@ -165,7 +165,7 @@ be used for nightlies or releases.
all_locales
===========
For the ``l10n`` and ``nightly-l10n`` kinds, this attribute contains the list
For the ``l10n`` and ``shippable-l10n`` kinds, this attribute contains the list
of relevant locales for the platform.
all_locales_with_changesets
@ -175,12 +175,12 @@ Contains a dict of l10n changesets, mapped by locales (same as in ``all_locales`
l10n_chunk
==========
For the ``l10n`` and ``nightly-l10n`` kinds, this attribute contains the chunk
For the ``l10n`` and ``shippable-l10n`` kinds, this attribute contains the chunk
number of the job. Note that this is a string!
chunk_locales
=============
For the ``l10n`` and ``nightly-l10n`` kinds, this attribute contains an array of
For the ``l10n`` and ``shippable-l10n`` kinds, this attribute contains an array of
the individual locales this chunk is responsible for processing.
locale

Просмотреть файл

@ -55,8 +55,8 @@ The l10n kind takes the last published nightly build, and generates localized bu
from it. You can read more about how to trigger these on the `wiki
<https://wiki.mozilla.org/ReleaseEngineering/TryServer#Desktop_l10n_jobs_.28on_Taskcluster.29>`_.
nightly-l10n
------------
shippable-l10n
--------------
The nightly l10n kind repacks a specific nightly build (from the same source code)
in order to provide localized versions of the same source.
@ -64,9 +64,9 @@ in order to provide localized versions of the same source.
shippable-l10n-signing
----------------------
The shippable l10n signing kind takes artifacts from the nightly-l10n kind and
The shippable l10n signing kind takes artifacts from the shippable-l10n kind and
passes them to signing servers to have their contents signed appropriately, based
on an appropriate signing format. One signing job is created for each nightly-l10n
on an appropriate signing format. One signing job is created for each shippable-l10n
job (usually chunked).
source-test

Просмотреть файл

@ -89,7 +89,7 @@ def make_task_description(config, jobs):
mar_signing_name = "mar-signing"
if job.get('locale'):
signing_name = "shippable-l10n-signing"
build_name = "nightly-l10n"
build_name = "shippable-l10n"
repackage_name = "repackage-l10n"
repackage_signing_name = "repackage-signing-l10n"
mar_signing_name = "mar-signing-l10n"

Просмотреть файл

@ -136,7 +136,7 @@ def generate_upstream_artifacts(upstream_task_ref, locales):
@transforms.add
def make_task_worker(config, jobs):
for job in jobs:
upstream_task_ref = get_upstream_task_ref(job, expected_kinds=('build', 'nightly-l10n'))
upstream_task_ref = get_upstream_task_ref(job, expected_kinds=('build', 'shippable-l10n'))
job['worker']['upstream-artifacts'] = generate_upstream_artifacts(
upstream_task_ref, job['attributes']['chunk_locales']