mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D18376 --HG-- extra : moz-landing-system : lando
52 lines
1.7 KiB
Python
52 lines
1.7 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 push-apk kind into an actual task description.
|
|
"""
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from six import text_type
|
|
from taskgraph.transforms.base import TransformSequence
|
|
from taskgraph.transforms.task import task_description_schema
|
|
from taskgraph.util.schema import resolve_keyed_by, Schema
|
|
|
|
from voluptuous import Required
|
|
|
|
google_play_description_schema = Schema({
|
|
Required('name'): text_type,
|
|
Required('description'): task_description_schema['description'],
|
|
Required('job-from'): task_description_schema['job-from'],
|
|
Required('attributes'): task_description_schema['attributes'],
|
|
Required('treeherder'): task_description_schema['treeherder'],
|
|
Required('run-on-projects'): task_description_schema['run-on-projects'],
|
|
Required('shipping-phase'): task_description_schema['shipping-phase'],
|
|
Required('shipping-product'): task_description_schema['shipping-product'],
|
|
Required('worker-type'): task_description_schema['worker-type'],
|
|
Required('worker'): object,
|
|
})
|
|
|
|
transforms = TransformSequence()
|
|
transforms.add_validate(google_play_description_schema)
|
|
|
|
|
|
@transforms.add
|
|
def set_label(config, jobs):
|
|
for job in jobs:
|
|
job['label'] = job['name']
|
|
yield job
|
|
|
|
|
|
@transforms.add
|
|
def set_worker_data(config, jobs):
|
|
for job in jobs:
|
|
worker = job['worker']
|
|
|
|
env = worker.setdefault('env', {})
|
|
resolve_keyed_by(
|
|
env, 'PACKAGE_NAME', item_name=job['name'],
|
|
project=config.params['project']
|
|
)
|
|
|
|
yield job
|