gecko-dev/taskcluster/taskgraph/transforms/android_stuff.py
Justin Wood 6fe0be02c7 Bug 1321614 - fix android_stuff kind to use build secrets, because it uses the same mozharness stuff as build jobs. r=dustin
MozReview-Commit-ID: D6wV1KSa6mp

--HG--
extra : rebase_source : ea2a3ad899d9e099631c0d06efceeaf260383f0a
2016-12-01 14:13:16 -05:00

53 lines
2.0 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/.
"""
Set dynamic task description properties of the android stuff. Temporary!
"""
from __future__ import absolute_import, print_function, unicode_literals
from taskgraph.transforms.base import TransformSequence
from taskgraph.transforms.job.common import SECRET_SCOPE
transforms = TransformSequence()
@transforms.add
def setup_task(config, tasks):
for task in tasks:
task['label'] = task['name']
env = task['worker'].setdefault('env', {})
env.update({
'GECKO_BASE_REPOSITORY': config.params['base_repository'],
'GECKO_HEAD_REF': config.params['head_rev'],
'GECKO_HEAD_REPOSITORY': config.params['head_repository'],
'GECKO_HEAD_REV': config.params['head_rev'],
'MOZ_BUILD_DATE': config.params['moz_build_date'],
'MOZ_SCM_LEVEL': config.params['level'],
'MH_BRANCH': config.params['project'],
})
task['worker'].setdefault('caches', []).append({
'type': 'persistent',
'name': 'level-{}-{}-tc-vcs'.format(
config.params['level'], config.params['project']),
'mount-point': "/home/worker/.tc-vcs",
})
if int(config.params['level']) > 1:
task['worker'].setdefault('caches', []).append({
'type': 'persistent',
'name': 'level-{}-{}-build-{}-workspace'.format(
config.params['level'], config.params['project'], task['name']),
'mount-point': "/home/worker/workspace",
})
# Need appropriate scopes for secrets, from the 'build' section
task['worker']['taskcluster-proxy'] = True
task['scopes'].append(SECRET_SCOPE.format(
'build', config.params['level'], '*'))
del task['name']
yield task