forked from mirrors/gecko-dev
MozReview-Commit-ID: 6wWYrNOG677 --HG-- extra : rebase_source : 316a9941c0c77c9f6dcd665bc7ca84914ad4f415
35 lines
1.3 KiB
Python
35 lines
1.3 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/.
|
|
"""
|
|
Support for running mach tasks (via run-task)
|
|
"""
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from taskgraph.transforms.job import run_job_using, configure_taskdesc_for_run
|
|
from taskgraph.util.schema import Schema
|
|
from voluptuous import Required
|
|
|
|
mach_schema = Schema({
|
|
Required('using'): 'mach',
|
|
|
|
# The mach command (omitting `./mach`) to run
|
|
Required('mach'): basestring,
|
|
|
|
# if true, perform a checkout of a comm-central based branch inside the
|
|
# gecko checkout
|
|
Required('comm-checkout'): bool,
|
|
})
|
|
|
|
|
|
@run_job_using("docker-worker", "mach", schema=mach_schema, defaults={'comm-checkout': False})
|
|
@run_job_using("native-engine", "mach", schema=mach_schema, defaults={'comm-checkout': False})
|
|
def docker_worker_mach(config, job, taskdesc):
|
|
run = job['run']
|
|
|
|
# defer to the run_task implementation
|
|
run['command'] = 'cd /builds/worker/checkouts/gecko && ./mach ' + run['mach']
|
|
run['using'] = 'run-task'
|
|
del run['mach']
|
|
configure_taskdesc_for_run(config, job, taskdesc, job['worker']['implementation'])
|