mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
29 lines
1.1 KiB
Python
29 lines
1.1 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/.
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from . import transform
|
|
|
|
|
|
class BalrogTask(transform.TransformTask):
|
|
"""
|
|
A task implementing a balrog submission job. These depend on beetmover jobs
|
|
and submits the update to balrog as available after the files are moved into place
|
|
"""
|
|
|
|
@classmethod
|
|
def get_inputs(cls, kind, path, config, params, loaded_tasks):
|
|
if config.get('kind-dependencies', []) != ["beetmover", "beetmover-l10n"]:
|
|
raise Exception("Balrog kinds must depend on beetmover kinds")
|
|
for task in loaded_tasks:
|
|
if not task.attributes.get('nightly'):
|
|
continue
|
|
if task.kind not in config.get('kind-dependencies', []):
|
|
continue
|
|
beetmover_task = {}
|
|
beetmover_task['dependent-task'] = task
|
|
|
|
yield beetmover_task
|