2018-04-18 21:17:09 +03:00
|
|
|
# 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 repackage signing task into an actual task description.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
2018-10-25 01:41:38 +03:00
|
|
|
from taskgraph.loader.single_dep import schema
|
2018-04-18 21:17:09 +03:00
|
|
|
from taskgraph.transforms.base import TransformSequence
|
|
|
|
from taskgraph.util.attributes import copy_attributes_from_dependent_job
|
2019-06-21 01:18:05 +03:00
|
|
|
from taskgraph.util.partners import check_if_partners_enabled, get_partner_config_by_kind
|
2018-04-18 21:17:09 +03:00
|
|
|
from taskgraph.util.scriptworker import (
|
|
|
|
get_signing_cert_scope_per_platform,
|
2018-12-27 12:30:52 +03:00
|
|
|
get_worker_type_for_scope,
|
2018-04-18 21:17:09 +03:00
|
|
|
)
|
|
|
|
from taskgraph.util.taskcluster import get_artifact_path
|
|
|
|
from taskgraph.transforms.task import task_description_schema
|
|
|
|
from voluptuous import Required, Optional
|
|
|
|
|
|
|
|
transforms = TransformSequence()
|
|
|
|
|
2018-10-25 01:41:38 +03:00
|
|
|
repackage_signing_description_schema = schema.extend({
|
2018-04-18 21:17:09 +03:00
|
|
|
Required('depname', default='repackage'): basestring,
|
|
|
|
Optional('label'): basestring,
|
|
|
|
Optional('extra'): object,
|
|
|
|
Optional('shipping-product'): task_description_schema['shipping-product'],
|
|
|
|
Optional('shipping-phase'): task_description_schema['shipping-phase'],
|
|
|
|
})
|
|
|
|
|
|
|
|
transforms.add(check_if_partners_enabled)
|
2018-11-21 02:44:12 +03:00
|
|
|
transforms.add_validate(repackage_signing_description_schema)
|
2018-04-18 21:17:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
@transforms.add
|
|
|
|
def make_repackage_signing_description(config, jobs):
|
|
|
|
for job in jobs:
|
2018-10-25 01:41:38 +03:00
|
|
|
dep_job = job['primary-dependency']
|
2018-04-18 21:17:09 +03:00
|
|
|
repack_id = dep_job.task['extra']['repack_id']
|
|
|
|
attributes = dep_job.attributes
|
2018-04-26 01:52:03 +03:00
|
|
|
build_platform = dep_job.attributes.get('build_platform')
|
2019-03-27 16:45:40 +03:00
|
|
|
is_nightly = dep_job.attributes.get('nightly', dep_job.attributes.get('shippable'))
|
2018-04-18 21:17:09 +03:00
|
|
|
|
2018-04-26 01:52:03 +03:00
|
|
|
# Mac & windows
|
2018-04-18 21:17:09 +03:00
|
|
|
label = dep_job.label.replace("repackage-", "repackage-signing-")
|
2018-04-26 01:52:03 +03:00
|
|
|
# Linux
|
|
|
|
label = label.replace("chunking-dummy-", "repackage-signing-")
|
2018-04-18 21:17:09 +03:00
|
|
|
description = (
|
|
|
|
"Signing of repackaged artifacts for partner repack id '{repack_id}' for build '"
|
|
|
|
"{build_platform}/{build_type}'".format(
|
|
|
|
repack_id=repack_id,
|
|
|
|
build_platform=attributes.get('build_platform'),
|
|
|
|
build_type=attributes.get('build_type')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-04-26 01:52:03 +03:00
|
|
|
if 'linux' in build_platform:
|
|
|
|
# we want the repack job, via the dependencies for the the chunking-dummy dep_job
|
|
|
|
for dep in dep_job.dependencies.values():
|
|
|
|
if dep.startswith('release-partner-repack'):
|
|
|
|
dependencies = {"repack": dep}
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# we have a genuine repackage job as our parent
|
|
|
|
dependencies = {"repackage": dep_job.label}
|
2018-04-18 21:17:09 +03:00
|
|
|
|
|
|
|
attributes = copy_attributes_from_dependent_job(dep_job)
|
|
|
|
attributes['repackage_type'] = 'repackage-signing'
|
|
|
|
|
|
|
|
signing_cert_scope = get_signing_cert_scope_per_platform(
|
|
|
|
build_platform, is_nightly, config
|
|
|
|
)
|
2019-05-15 16:17:26 +03:00
|
|
|
scopes = [signing_cert_scope]
|
2018-04-26 01:52:03 +03:00
|
|
|
|
|
|
|
if 'win' in build_platform:
|
|
|
|
upstream_artifacts = [{
|
|
|
|
"taskId": {"task-reference": "<repackage>"},
|
|
|
|
"taskType": "repackage",
|
|
|
|
"paths": [
|
|
|
|
get_artifact_path(dep_job, "{}/target.installer.exe".format(repack_id)),
|
|
|
|
],
|
2019-05-15 16:17:26 +03:00
|
|
|
"formats": ["sha2signcode", "autograph_gpg"]
|
2018-04-26 01:52:03 +03:00
|
|
|
}]
|
2019-06-21 01:18:05 +03:00
|
|
|
|
|
|
|
partner_config = get_partner_config_by_kind(config, config.kind)
|
|
|
|
partner, subpartner, _ = repack_id.split('/')
|
|
|
|
repack_stub_installer = partner_config[partner][subpartner].get(
|
|
|
|
'repack_stub_installer')
|
|
|
|
if build_platform.startswith('win32') and repack_stub_installer:
|
|
|
|
upstream_artifacts.append({
|
|
|
|
"taskId": {"task-reference": "<repackage>"},
|
|
|
|
"taskType": "repackage",
|
|
|
|
"paths": [
|
|
|
|
get_artifact_path(dep_job, "{}/target.stub-installer.exe".format(
|
|
|
|
repack_id)),
|
|
|
|
],
|
|
|
|
"formats": ["sha2signcode", "autograph_gpg"]
|
|
|
|
})
|
2018-04-26 01:52:03 +03:00
|
|
|
elif 'mac' in build_platform:
|
|
|
|
upstream_artifacts = [{
|
|
|
|
"taskId": {"task-reference": "<repackage>"},
|
|
|
|
"taskType": "repackage",
|
|
|
|
"paths": [
|
|
|
|
get_artifact_path(dep_job, "{}/target.dmg".format(repack_id)),
|
|
|
|
],
|
2019-05-15 16:17:26 +03:00
|
|
|
"formats": ["autograph_gpg"]
|
2018-04-26 01:52:03 +03:00
|
|
|
}]
|
|
|
|
elif 'linux' in build_platform:
|
|
|
|
upstream_artifacts = [{
|
|
|
|
"taskId": {"task-reference": "<repack>"},
|
|
|
|
"taskType": "repackage",
|
|
|
|
"paths": [
|
|
|
|
get_artifact_path(dep_job, "{}/target.tar.bz2".format(repack_id)),
|
|
|
|
],
|
2019-05-15 16:17:26 +03:00
|
|
|
"formats": ["autograph_gpg"]
|
2018-04-26 01:52:03 +03:00
|
|
|
}]
|
2018-04-18 21:17:09 +03:00
|
|
|
|
|
|
|
task = {
|
|
|
|
'label': label,
|
|
|
|
'description': description,
|
2018-12-27 12:30:52 +03:00
|
|
|
'worker-type': get_worker_type_for_scope(config, signing_cert_scope),
|
2018-04-18 21:17:09 +03:00
|
|
|
'worker': {'implementation': 'scriptworker-signing',
|
|
|
|
'upstream-artifacts': upstream_artifacts,
|
|
|
|
'max-run-time': 3600},
|
|
|
|
'scopes': scopes,
|
|
|
|
'dependencies': dependencies,
|
|
|
|
'attributes': attributes,
|
|
|
|
'run-on-projects': dep_job.attributes.get('run_on_projects'),
|
|
|
|
'extra': {
|
|
|
|
'repack_id': repack_id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
yield task
|