forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D1743 --HG-- extra : moz-landing-system : lando
512 lines
19 KiB
Python
512 lines
19 KiB
Python
# 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.
|
|
"""
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from taskgraph.transforms.base import TransformSequence
|
|
from taskgraph.util.attributes import copy_attributes_from_dependent_job
|
|
from taskgraph.util.schema import validate_schema, Schema
|
|
from taskgraph.util.scriptworker import (get_beetmover_bucket_scope,
|
|
get_beetmover_action_scope,
|
|
get_phase,
|
|
get_worker_type_for_scope)
|
|
from taskgraph.util.taskcluster import get_artifact_prefix
|
|
from taskgraph.transforms.task import task_description_schema
|
|
from voluptuous import Any, Required, Optional
|
|
|
|
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US = [
|
|
'buildhub.json',
|
|
"target.common.tests.tar.gz",
|
|
"target.cppunittest.tests.tar.gz",
|
|
"target.crashreporter-symbols.zip",
|
|
"target.json",
|
|
"target.mochitest.tests.tar.gz",
|
|
"target.mozinfo.json",
|
|
"target.reftest.tests.tar.gz",
|
|
"target.talos.tests.tar.gz",
|
|
"target.awsy.tests.tar.gz",
|
|
"target.test_packages.json",
|
|
"target.txt",
|
|
"target.web-platform.tests.tar.gz",
|
|
"target.xpcshell.tests.tar.gz",
|
|
"target_info.txt",
|
|
"target.jsshell.zip",
|
|
"mozharness.zip",
|
|
"target.langpack.xpi",
|
|
]
|
|
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US = [
|
|
"update/target.complete.mar",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N = [
|
|
"target.langpack.xpi",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N = [
|
|
"target.complete.mar",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US = [
|
|
"en-US/buildhub.json",
|
|
"en-US/target.common.tests.tar.gz",
|
|
"en-US/target.cppunittest.tests.tar.gz",
|
|
"en-US/target.crashreporter-symbols.zip",
|
|
"en-US/target.json",
|
|
"en-US/target.mochitest.tests.tar.gz",
|
|
"en-US/target.mozinfo.json",
|
|
"en-US/target.reftest.tests.tar.gz",
|
|
"en-US/target.talos.tests.tar.gz",
|
|
"en-US/target.awsy.tests.tar.gz",
|
|
"en-US/target.test_packages.json",
|
|
"en-US/target.txt",
|
|
"en-US/target.web-platform.tests.tar.gz",
|
|
"en-US/target.xpcshell.tests.tar.gz",
|
|
"en-US/target_info.txt",
|
|
"en-US/mozharness.zip",
|
|
"en-US/robocop.apk",
|
|
"en-US/target.jsshell.zip",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_MULTI = [
|
|
"buildhub.json",
|
|
"target.json",
|
|
"target.mozinfo.json",
|
|
"target.test_packages.json",
|
|
"target.txt",
|
|
"target_info.txt",
|
|
"robocop.apk",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_MOBILE_UPSTREAM_ARTIFACTS_SIGNED_EN_US = [
|
|
"en-US/target.apk",
|
|
]
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
_MOBILE_UPSTREAM_ARTIFACTS_SIGNED_MULTI = [
|
|
"target.apk",
|
|
]
|
|
|
|
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
UPSTREAM_ARTIFACT_UNSIGNED_PATHS = {
|
|
'linux64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'linux-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'linux64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'linux-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'linux64-asan-reporter-nightly':
|
|
# ASan reporter builds don't generate the regular crashreporter symbol
|
|
# packages, so we shouldn't try to beetmove them
|
|
filter(lambda a: a != 'target.crashreporter-symbols.zip',
|
|
_DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
]),
|
|
'android-x86-nightly': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US,
|
|
'android-aarch64-nightly': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US,
|
|
'android-api-16-nightly': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US,
|
|
'macosx64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'macosx64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar",
|
|
"host/bin/mbsdiff",
|
|
],
|
|
'win32-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar.exe",
|
|
"host/bin/mbsdiff.exe",
|
|
],
|
|
'win32-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar.exe",
|
|
"host/bin/mbsdiff.exe",
|
|
],
|
|
'win64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar.exe",
|
|
"host/bin/mbsdiff.exe",
|
|
],
|
|
'win64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_EN_US + [
|
|
"host/bin/mar.exe",
|
|
"host/bin/mbsdiff.exe",
|
|
],
|
|
'linux64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'linux64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'linux-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'linux-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'android-x86-nightly-multi': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_MULTI,
|
|
'android-aarch64-nightly-multi': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_MULTI,
|
|
'android-api-16-nightly-l10n': [],
|
|
'android-api-16-nightly-multi': _MOBILE_UPSTREAM_ARTIFACTS_UNSIGNED_MULTI,
|
|
'macosx64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'macosx64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'win32-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'win32-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'win64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
'win64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_UNSIGNED_L10N,
|
|
}
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
UPSTREAM_ARTIFACT_SIGNED_PATHS = {
|
|
'linux64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux64-asan-reporter-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'android-x86-nightly': ["en-US/target.apk"],
|
|
'android-aarch64-nightly': ["en-US/target.apk"],
|
|
'android-api-16-nightly': ["en-US/target.apk"],
|
|
'macosx64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.dmg",
|
|
"target.dmg.asc",
|
|
],
|
|
'macosx64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.dmg",
|
|
"target.dmg.asc",
|
|
],
|
|
'win32-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.zip",
|
|
],
|
|
'win32-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.zip",
|
|
],
|
|
'win64-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.zip",
|
|
],
|
|
'win64-devedition-nightly': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_EN_US + [
|
|
"target.zip",
|
|
],
|
|
'linux64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'linux-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.tar.bz2",
|
|
"target.tar.bz2.asc",
|
|
],
|
|
'android-x86-nightly-multi': ["target.apk"],
|
|
'android-aarch64-nightly-multi': ["target.apk"],
|
|
'android-api-16-nightly-l10n': ["target.apk"],
|
|
'android-api-16-nightly-multi': ["target.apk"],
|
|
'macosx64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.dmg",
|
|
"target.dmg.asc",
|
|
],
|
|
'macosx64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.dmg",
|
|
"target.dmg.asc",
|
|
],
|
|
'win32-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.zip",
|
|
],
|
|
'win32-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.zip",
|
|
],
|
|
'win64-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.zip",
|
|
],
|
|
'win64-devedition-nightly-l10n': _DESKTOP_UPSTREAM_ARTIFACTS_SIGNED_L10N + [
|
|
"target.zip",
|
|
],
|
|
|
|
}
|
|
# Until bug 1331141 is fixed, if you are adding any new artifacts here that
|
|
# need to be transfered to S3, please be aware you also need to follow-up
|
|
# with a beetmover patch in https://github.com/mozilla-releng/beetmoverscript/.
|
|
# See example in bug 1348286
|
|
UPSTREAM_SOURCE_ARTIFACTS = [
|
|
"source.tar.xz",
|
|
"source.tar.xz.asc",
|
|
]
|
|
|
|
# Voluptuous uses marker objects as dictionary *keys*, but they are not
|
|
# comparable, so we cast all of the keys back to regular strings
|
|
task_description_schema = {str(k): v for k, v in task_description_schema.schema.iteritems()}
|
|
|
|
transforms = TransformSequence()
|
|
|
|
# shortcut for a string where task references are allowed
|
|
taskref_or_string = Any(
|
|
basestring,
|
|
{Required('task-reference'): basestring})
|
|
|
|
beetmover_description_schema = Schema({
|
|
# the dependent task (object) for this beetmover job, used to inform beetmover.
|
|
Required('dependent-task'): object,
|
|
|
|
# depname is used in taskref's to identify the taskID of the unsigned things
|
|
Required('depname', default='build'): basestring,
|
|
|
|
# unique label to describe this beetmover task, defaults to {dep.label}-beetmover
|
|
Optional('label'): basestring,
|
|
|
|
# treeherder is allowed here to override any defaults we use for beetmover. See
|
|
# taskcluster/taskgraph/transforms/task.py for the schema details, and the
|
|
# below transforms for defaults of various values.
|
|
Optional('treeherder'): task_description_schema['treeherder'],
|
|
|
|
# locale is passed only for l10n beetmoving
|
|
Optional('locale'): basestring,
|
|
|
|
Optional('shipping-phase'): task_description_schema['shipping-phase'],
|
|
Optional('shipping-product'): task_description_schema['shipping-product'],
|
|
})
|
|
|
|
|
|
@transforms.add
|
|
def validate(config, jobs):
|
|
for job in jobs:
|
|
label = job.get('dependent-task', object).__dict__.get('label', '?no-label?')
|
|
validate_schema(
|
|
beetmover_description_schema, job,
|
|
"In beetmover ({!r} kind) task for {!r}:".format(config.kind, label))
|
|
yield job
|
|
|
|
|
|
@transforms.add
|
|
def make_task_description(config, jobs):
|
|
for job in jobs:
|
|
dep_job = job['dependent-task']
|
|
attributes = dep_job.attributes
|
|
|
|
treeherder = job.get('treeherder', {})
|
|
treeherder.setdefault('symbol', 'BM-S')
|
|
dep_th_platform = dep_job.task.get('extra', {}).get(
|
|
'treeherder', {}).get('machine', {}).get('platform', '')
|
|
treeherder.setdefault('platform',
|
|
"{}/opt".format(dep_th_platform))
|
|
treeherder.setdefault('tier', 1)
|
|
treeherder.setdefault('kind', 'build')
|
|
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')
|
|
)
|
|
)
|
|
|
|
dependent_kind = str(dep_job.kind)
|
|
dependencies = {dependent_kind: dep_job.label}
|
|
|
|
if len(dep_job.dependencies) > 1:
|
|
raise NotImplementedError(
|
|
"Can't beetmove a signing task with multiple dependencies")
|
|
signing_dependencies = dep_job.dependencies
|
|
dependencies.update(signing_dependencies)
|
|
|
|
attributes = copy_attributes_from_dependent_job(dep_job)
|
|
|
|
if job.get('locale'):
|
|
attributes['locale'] = job['locale']
|
|
|
|
bucket_scope = get_beetmover_bucket_scope(config)
|
|
action_scope = get_beetmover_action_scope(config)
|
|
phase = get_phase(config)
|
|
|
|
task = {
|
|
'label': label,
|
|
'description': description,
|
|
'worker-type': get_worker_type_for_scope(config, bucket_scope),
|
|
'scopes': [bucket_scope, action_scope],
|
|
'dependencies': dependencies,
|
|
'attributes': attributes,
|
|
'run-on-projects': dep_job.attributes.get('run_on_projects'),
|
|
'treeherder': treeherder,
|
|
'shipping-phase': phase,
|
|
}
|
|
|
|
yield task
|
|
|
|
|
|
def generate_upstream_artifacts(job, signing_task_ref, build_task_ref, platform,
|
|
locale=None):
|
|
build_mapping = UPSTREAM_ARTIFACT_UNSIGNED_PATHS
|
|
signing_mapping = UPSTREAM_ARTIFACT_SIGNED_PATHS
|
|
|
|
artifact_prefix = get_artifact_prefix(job)
|
|
if locale:
|
|
artifact_prefix = '{}/{}'.format(artifact_prefix, locale)
|
|
platform = "{}-l10n".format(platform)
|
|
|
|
if platform.endswith("-source"):
|
|
return [
|
|
{
|
|
"taskId": {"task-reference": signing_task_ref},
|
|
"taskType": "signing",
|
|
"paths": ["{}/{}".format(artifact_prefix, p)
|
|
for p in UPSTREAM_SOURCE_ARTIFACTS],
|
|
"locale": locale or "en-US",
|
|
}
|
|
]
|
|
|
|
upstream_artifacts = []
|
|
|
|
# Some platforms (like android-api-16-nightly-l10n) may not depend on any unsigned artifact
|
|
if build_mapping[platform]:
|
|
upstream_artifacts.append({
|
|
"taskId": {"task-reference": build_task_ref},
|
|
"taskType": "build",
|
|
"paths": ["{}/{}".format(artifact_prefix, p)
|
|
for p in build_mapping[platform]],
|
|
"locale": locale or "en-US",
|
|
})
|
|
|
|
upstream_artifacts.append({
|
|
"taskId": {"task-reference": signing_task_ref},
|
|
"taskType": "signing",
|
|
"paths": ["{}/{}".format(artifact_prefix, p)
|
|
for p in signing_mapping[platform]],
|
|
"locale": locale or "en-US",
|
|
})
|
|
|
|
if not locale and "android" in platform:
|
|
# edge case to support 'multi' locale paths
|
|
multi_platform = "{}-multi".format(platform)
|
|
upstream_artifacts.extend([{
|
|
"taskId": {"task-reference": build_task_ref},
|
|
"taskType": "build",
|
|
"paths": ["{}/{}".format(artifact_prefix, p)
|
|
for p in build_mapping[multi_platform]],
|
|
"locale": "multi",
|
|
}, {
|
|
"taskId": {"task-reference": signing_task_ref},
|
|
"taskType": "signing",
|
|
"paths": ["{}/{}".format(artifact_prefix, p)
|
|
for p in signing_mapping[multi_platform]],
|
|
"locale": "multi",
|
|
}])
|
|
|
|
return upstream_artifacts
|
|
|
|
|
|
def craft_release_properties(config, job):
|
|
params = config.params
|
|
build_platform = job['attributes']['build_platform']
|
|
build_platform = build_platform.replace('-nightly', '')
|
|
if build_platform.endswith("-source"):
|
|
build_platform = build_platform.replace('-source', '-release')
|
|
|
|
# XXX This should be explicitly set via build attributes or something
|
|
if 'android' in job['label'] or 'fennec' in job['label']:
|
|
app_name = 'Fennec'
|
|
elif config.graph_config['trust-domain'] == 'comm':
|
|
app_name = 'Thunderbird'
|
|
else:
|
|
# XXX Even DevEdition is called Firefox
|
|
app_name = 'Firefox'
|
|
|
|
return {
|
|
'app-name': app_name,
|
|
'app-version': str(params['app_version']),
|
|
'branch': params['project'],
|
|
'build-id': str(params['moz_build_date']),
|
|
'hash-type': 'sha512',
|
|
'platform': build_platform,
|
|
}
|
|
|
|
|
|
@transforms.add
|
|
def make_task_worker(config, jobs):
|
|
for job in jobs:
|
|
valid_beetmover_job = (len(job["dependencies"]) == 2 and
|
|
any(['signing' in j for j in job['dependencies']]))
|
|
if not valid_beetmover_job:
|
|
raise NotImplementedError("Beetmover must have two dependencies.")
|
|
|
|
locale = job["attributes"].get("locale")
|
|
platform = job["attributes"]["build_platform"]
|
|
build_task = None
|
|
signing_task = None
|
|
for dependency in job["dependencies"].keys():
|
|
if 'signing' in dependency:
|
|
signing_task = dependency
|
|
else:
|
|
build_task = dependency
|
|
|
|
signing_task_ref = "<" + str(signing_task) + ">"
|
|
build_task_ref = "<" + str(build_task) + ">"
|
|
|
|
worker = {
|
|
'implementation': 'beetmover',
|
|
'release-properties': craft_release_properties(config, job),
|
|
'upstream-artifacts': generate_upstream_artifacts(
|
|
job, signing_task_ref, build_task_ref, platform, locale
|
|
)
|
|
}
|
|
|
|
if locale:
|
|
worker["locale"] = locale
|
|
job["worker"] = worker
|
|
|
|
yield job
|