2018-08-16 19:23:15 +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 beetmover task into an actual task description.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
import re
|
2018-11-28 14:13:52 +03:00
|
|
|
|
2018-10-25 01:41:38 +03:00
|
|
|
from taskgraph.loader.single_dep import schema
|
2018-08-16 19:23:15 +03:00
|
|
|
from taskgraph.transforms.base import TransformSequence
|
|
|
|
from taskgraph.transforms.beetmover import \
|
|
|
|
craft_release_properties as beetmover_craft_release_properties
|
|
|
|
from taskgraph.util.attributes import copy_attributes_from_dependent_job
|
2018-11-21 02:44:12 +03:00
|
|
|
from taskgraph.util.schema import resolve_keyed_by, optionally_keyed_by
|
2018-11-28 14:13:52 +03:00
|
|
|
from taskgraph.util.scriptworker import (generate_beetmover_artifact_map,
|
2019-07-05 18:19:14 +03:00
|
|
|
generate_beetmover_upstream_artifacts,
|
2018-11-28 14:13:52 +03:00
|
|
|
get_worker_type_for_scope)
|
2018-08-16 19:23:15 +03:00
|
|
|
from taskgraph.transforms.task import task_description_schema
|
|
|
|
from voluptuous import Required, Optional
|
|
|
|
|
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
_ARTIFACT_ID_PER_PLATFORM = {
|
|
|
|
'android-aarch64': 'geckoview{update_channel}-arm64-v8a',
|
|
|
|
'android-api-16': 'geckoview{update_channel}-armeabi-v7a',
|
|
|
|
'android-x86': 'geckoview{update_channel}-x86',
|
|
|
|
'android-x86_64': 'geckoview{update_channel}-x86_64',
|
|
|
|
'android-geckoview-fat-aar': 'geckoview{update_channel}',
|
|
|
|
}
|
|
|
|
|
|
|
|
_MOZ_UPDATE_CHANNEL_PER_BRANCH = {
|
|
|
|
'mozilla-release': '',
|
|
|
|
'mozilla-beta': '-beta',
|
|
|
|
'mozilla-central': '-nightly',
|
|
|
|
'try': '-nightly-try',
|
|
|
|
'maple': '-nightly-maple',
|
|
|
|
}
|
|
|
|
|
2018-10-25 01:41:38 +03:00
|
|
|
beetmover_description_schema = schema.extend({
|
2018-08-16 19:23:15 +03:00
|
|
|
Required('depname', default='build'): basestring,
|
|
|
|
Optional('label'): basestring,
|
|
|
|
Optional('treeherder'): task_description_schema['treeherder'],
|
|
|
|
|
2018-10-29 14:11:46 +03:00
|
|
|
Required('run-on-projects'): task_description_schema['run-on-projects'],
|
|
|
|
Required('run-on-hg-branches'): task_description_schema['run-on-hg-branches'],
|
|
|
|
|
2018-09-12 00:09:28 +03:00
|
|
|
Optional('bucket-scope'): optionally_keyed_by('release-level', basestring),
|
2018-10-29 14:11:46 +03:00
|
|
|
Optional('shipping-phase'): optionally_keyed_by(
|
|
|
|
'project', task_description_schema['shipping-phase']
|
|
|
|
),
|
2018-08-16 19:23:15 +03:00
|
|
|
Optional('shipping-product'): task_description_schema['shipping-product'],
|
2018-11-28 14:13:52 +03:00
|
|
|
Optional('attributes'): task_description_schema['attributes'],
|
2018-08-16 19:23:15 +03:00
|
|
|
})
|
|
|
|
|
2018-11-21 02:44:12 +03:00
|
|
|
transforms = TransformSequence()
|
|
|
|
transforms.add_validate(beetmover_description_schema)
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
|
2018-10-29 14:11:46 +03:00
|
|
|
@transforms.add
|
|
|
|
def resolve_keys(config, jobs):
|
|
|
|
for job in jobs:
|
|
|
|
resolve_keyed_by(
|
|
|
|
job, 'run-on-hg-branches', item_name=job['label'], project=config.params['project']
|
|
|
|
)
|
|
|
|
resolve_keyed_by(
|
|
|
|
job, 'shipping-phase', item_name=job['label'], project=config.params['project']
|
|
|
|
)
|
|
|
|
resolve_keyed_by(
|
|
|
|
job, 'bucket-scope', item_name=job['label'],
|
|
|
|
**{'release-level': config.params.release_level()}
|
|
|
|
)
|
|
|
|
yield job
|
|
|
|
|
|
|
|
|
2018-08-16 19:23:15 +03:00
|
|
|
@transforms.add
|
|
|
|
def make_task_description(config, jobs):
|
|
|
|
for job in jobs:
|
2018-10-25 01:41:38 +03:00
|
|
|
dep_job = job['primary-dependency']
|
2018-08-16 19:23:15 +03:00
|
|
|
attributes = dep_job.attributes
|
|
|
|
|
|
|
|
treeherder = job.get('treeherder', {})
|
|
|
|
treeherder.setdefault('symbol', 'BM-gv')
|
|
|
|
dep_th_platform = dep_job.task.get('extra', {}).get(
|
|
|
|
'treeherder', {}).get('machine', {}).get('platform', '')
|
|
|
|
treeherder.setdefault('platform',
|
|
|
|
'{}/opt'.format(dep_th_platform))
|
2018-08-20 17:08:19 +03:00
|
|
|
treeherder.setdefault('tier', 2)
|
2018-08-16 19:23:15 +03:00
|
|
|
treeherder.setdefault('kind', 'build')
|
|
|
|
label = job['label']
|
|
|
|
description = (
|
|
|
|
"Beetmover submission for geckoview"
|
|
|
|
"{build_platform}/{build_type}'".format(
|
|
|
|
build_platform=attributes.get('build_platform'),
|
|
|
|
build_type=attributes.get('build_type')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
dependencies = {dep_job.kind: dep_job.label}
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
attributes = copy_attributes_from_dependent_job(dep_job)
|
2018-11-28 14:13:52 +03:00
|
|
|
attributes.update(job.get('attributes', {}))
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
if job.get('locale'):
|
|
|
|
attributes['locale'] = job['locale']
|
|
|
|
|
2018-10-29 14:11:46 +03:00
|
|
|
attributes['run_on_hg_branches'] = job['run-on-hg-branches']
|
2018-08-16 19:23:15 +03:00
|
|
|
|
|
|
|
task = {
|
|
|
|
'label': label,
|
|
|
|
'description': description,
|
|
|
|
'worker-type': get_worker_type_for_scope(config, job['bucket-scope']),
|
|
|
|
'scopes': [job['bucket-scope'], 'project:releng:beetmover:action:push-to-maven'],
|
|
|
|
'dependencies': dependencies,
|
|
|
|
'attributes': attributes,
|
2018-10-29 14:11:46 +03:00
|
|
|
'run-on-projects': job['run-on-projects'],
|
2018-08-16 19:23:15 +03:00
|
|
|
'treeherder': treeherder,
|
2018-10-11 02:08:18 +03:00
|
|
|
'shipping-phase': job['shipping-phase'],
|
2018-08-16 19:23:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
yield task
|
|
|
|
|
|
|
|
|
|
|
|
@transforms.add
|
|
|
|
def make_task_worker(config, jobs):
|
|
|
|
for job in jobs:
|
2019-07-01 18:10:05 +03:00
|
|
|
valid_beetmover_job = len(job['dependencies']) == 1 and 'build' in job['dependencies']
|
2018-08-16 19:23:15 +03:00
|
|
|
if not valid_beetmover_job:
|
|
|
|
raise NotImplementedError(
|
2019-07-01 18:10:05 +03:00
|
|
|
'Beetmover-geckoview must have a single dependency. Got: {}'.format(
|
2018-08-16 19:23:15 +03:00
|
|
|
job['dependencies']
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
worker = {
|
2018-08-16 19:23:15 +03:00
|
|
|
'implementation': 'beetmover-maven',
|
|
|
|
'release-properties': craft_release_properties(config, job),
|
|
|
|
}
|
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
version_groups = re.match(r'(\d+).(\d+).*', config.params['version'])
|
|
|
|
if version_groups:
|
|
|
|
major_version, minor_version = version_groups.groups()
|
|
|
|
|
|
|
|
template_vars = {
|
|
|
|
'artifact_id': worker['release-properties']['artifact-id'],
|
|
|
|
'build_date': config.params['moz_build_date'],
|
|
|
|
'major_version': major_version,
|
|
|
|
'minor_version': minor_version,
|
|
|
|
}
|
|
|
|
worker['artifact-map'] = generate_beetmover_artifact_map(
|
2019-07-05 18:19:14 +03:00
|
|
|
config, job, **template_vars
|
|
|
|
)
|
|
|
|
upstream_artifacts = generate_beetmover_upstream_artifacts(
|
|
|
|
config, job, platform='', **template_vars
|
|
|
|
)
|
|
|
|
worker['upstream-artifacts'] = [{
|
|
|
|
key: value for key, value in upstream_artifact.items()
|
|
|
|
if key != 'locale'
|
|
|
|
} for upstream_artifact in upstream_artifacts]
|
2019-07-01 18:10:05 +03:00
|
|
|
|
|
|
|
job["worker"] = worker
|
|
|
|
|
2018-08-16 19:23:15 +03:00
|
|
|
yield job
|
|
|
|
|
|
|
|
|
|
|
|
def craft_release_properties(config, job):
|
2019-07-01 18:10:05 +03:00
|
|
|
props = beetmover_craft_release_properties(config, job)
|
2018-08-16 19:23:15 +03:00
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
platform = props['platform']
|
|
|
|
update_channel = _MOZ_UPDATE_CHANNEL_PER_BRANCH.get(
|
|
|
|
props['branch'], '-UNKNOWN_MOZ_UPDATE_CHANNEL'
|
2018-08-16 19:23:15 +03:00
|
|
|
)
|
2019-07-01 18:10:05 +03:00
|
|
|
artifact_id = _ARTIFACT_ID_PER_PLATFORM[platform].format(update_channel=update_channel)
|
|
|
|
props['artifact-id'] = artifact_id
|
|
|
|
props['app-name'] = 'geckoview' # this beetmover job is not about pushing Fennec
|
2018-08-16 19:23:15 +03:00
|
|
|
|
2019-07-01 18:10:05 +03:00
|
|
|
return props
|