gecko-dev/taskcluster/taskgraph/transforms/build.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

187 строки
6.6 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/.
"""
Apply some defaults and minor modifications to the jobs defined in the build
kind.
"""
from __future__ import absolute_import, print_function, unicode_literals
from taskgraph.transforms.base import TransformSequence
from taskgraph.util.attributes import RELEASE_PROJECTS
from taskgraph.util.schema import resolve_keyed_by
Bug 1359976: base worker payload generation on worker-type; r=wcosta r=aki To date we have variously specified both worker-type and worker-implementation, often manually coordinated. We also embedded a few awkward assumptions such as that the native engine only runs on OS X. But a worker type has one and only one implementation, and that implementation is stable over time (as changing it would require simultaneous landings on all trees). Instead, this change makes worker-type the primary configuration, and derives both a worker implementation (defining the payload format) and worker OS (determining what to include in the payload) from that value. The derivation occurs when deciding how to implement a particular job, where the run_using functions are distinguished by worker implementation. The two-part logic to determine how and where to run a test task based on its platform is combined into a single transform, `set_worker_type`. This contains some other related changes: - MOZ_AUTOMATION is set in specific jobs, rather than everywhere docker-worker is used - the URL to test packages is factored out into a shared function - docker-worker test defaults are applied in `mozharness_test.py` - the WORKER_TYPE array in `task.py`, formerly mixing two types of keys, is split - the 'invalid' workerType is assigned an 'invalid' implementation - all tasks that do not use job descriptions but use docker-worker, etc. have `worker.os` added Tested to not produce a substantially different taskgraph for a regular push, a try push, or a nightly cron. MozReview-Commit-ID: LDHrmrpBo7I --HG-- extra : rebase_source : 4cdfe6b8d9874b0c156671515b213d820b48482f
2017-05-09 01:53:50 +03:00
from taskgraph.util.workertypes import worker_type_implementation
from mozbuild.artifact_builds import JOB_CHOICES as ARTIFACT_JOBS
import logging
logger = logging.getLogger(__name__)
transforms = TransformSequence()
@transforms.add
def set_defaults(config, jobs):
"""Set defaults, including those that differ per worker implementation"""
for job in jobs:
job['treeherder'].setdefault('kind', 'build')
job['treeherder'].setdefault('tier', 1)
_, worker_os = worker_type_implementation(config.graph_config, job['worker-type'])
worker = job.setdefault('worker', {})
worker.setdefault('env', {})
Bug 1359976: base worker payload generation on worker-type; r=wcosta r=aki To date we have variously specified both worker-type and worker-implementation, often manually coordinated. We also embedded a few awkward assumptions such as that the native engine only runs on OS X. But a worker type has one and only one implementation, and that implementation is stable over time (as changing it would require simultaneous landings on all trees). Instead, this change makes worker-type the primary configuration, and derives both a worker implementation (defining the payload format) and worker OS (determining what to include in the payload) from that value. The derivation occurs when deciding how to implement a particular job, where the run_using functions are distinguished by worker implementation. The two-part logic to determine how and where to run a test task based on its platform is combined into a single transform, `set_worker_type`. This contains some other related changes: - MOZ_AUTOMATION is set in specific jobs, rather than everywhere docker-worker is used - the URL to test packages is factored out into a shared function - docker-worker test defaults are applied in `mozharness_test.py` - the WORKER_TYPE array in `task.py`, formerly mixing two types of keys, is split - the 'invalid' workerType is assigned an 'invalid' implementation - all tasks that do not use job descriptions but use docker-worker, etc. have `worker.os` added Tested to not produce a substantially different taskgraph for a regular push, a try push, or a nightly cron. MozReview-Commit-ID: LDHrmrpBo7I --HG-- extra : rebase_source : 4cdfe6b8d9874b0c156671515b213d820b48482f
2017-05-09 01:53:50 +03:00
if worker_os == "linux":
worker.setdefault('docker-image', {'in-tree': 'debian7-amd64-build'})
Bug 1359976: base worker payload generation on worker-type; r=wcosta r=aki To date we have variously specified both worker-type and worker-implementation, often manually coordinated. We also embedded a few awkward assumptions such as that the native engine only runs on OS X. But a worker type has one and only one implementation, and that implementation is stable over time (as changing it would require simultaneous landings on all trees). Instead, this change makes worker-type the primary configuration, and derives both a worker implementation (defining the payload format) and worker OS (determining what to include in the payload) from that value. The derivation occurs when deciding how to implement a particular job, where the run_using functions are distinguished by worker implementation. The two-part logic to determine how and where to run a test task based on its platform is combined into a single transform, `set_worker_type`. This contains some other related changes: - MOZ_AUTOMATION is set in specific jobs, rather than everywhere docker-worker is used - the URL to test packages is factored out into a shared function - docker-worker test defaults are applied in `mozharness_test.py` - the WORKER_TYPE array in `task.py`, formerly mixing two types of keys, is split - the 'invalid' workerType is assigned an 'invalid' implementation - all tasks that do not use job descriptions but use docker-worker, etc. have `worker.os` added Tested to not produce a substantially different taskgraph for a regular push, a try push, or a nightly cron. MozReview-Commit-ID: LDHrmrpBo7I --HG-- extra : rebase_source : 4cdfe6b8d9874b0c156671515b213d820b48482f
2017-05-09 01:53:50 +03:00
worker['chain-of-trust'] = True
elif worker_os == "windows":
worker['chain-of-trust'] = True
yield job
@transforms.add
def stub_installer(config, jobs):
for job in jobs:
resolve_keyed_by(
job, 'stub-installer', item_name=job['name'], project=config.params['project'],
**{
'release-type': config.params['release_type'],
}
)
job.setdefault('attributes', {})
if job.get('stub-installer'):
job['attributes']['stub-installer'] = job['stub-installer']
job['worker']['env'].update({"USE_STUB_INSTALLER": "1"})
if 'stub-installer' in job:
del job['stub-installer']
yield job
@transforms.add
def resolve_shipping_product(config, jobs):
for job in jobs:
resolve_keyed_by(
job, 'shipping-product', item_name=job['name'],
**{
'release-type': config.params['release_type'],
}
)
yield job
@transforms.add
def update_channel(config, jobs):
keys = [
'run.update-channel',
'run.mar-channel-id',
'run.accepted-mar-channel-ids',
]
for job in jobs:
job['worker'].setdefault('env', {})
for key in keys:
resolve_keyed_by(
job, key, item_name=job['name'],
**{
'release-type': config.params['release_type'],
}
)
update_channel = job['run'].pop('update-channel', None)
if update_channel:
job['run'].setdefault('extra-config', {})['update_channel'] = update_channel
job['attributes']['update-channel'] = update_channel
mar_channel_id = job['run'].pop('mar-channel-id', None)
if mar_channel_id:
job['attributes']['mar-channel-id'] = mar_channel_id
job['worker']['env']['MAR_CHANNEL_ID'] = mar_channel_id
accepted_mar_channel_ids = job['run'].pop('accepted-mar-channel-ids', None)
if accepted_mar_channel_ids:
job['attributes']['accepted-mar-channel-ids'] = accepted_mar_channel_ids
job['worker']['env']['ACCEPTED_MAR_CHANNEL_IDS'] = accepted_mar_channel_ids
yield job
@transforms.add
def mozconfig(config, jobs):
for job in jobs:
resolve_keyed_by(
job, 'run.mozconfig-variant', item_name=job['name'],
**{
'release-type': config.params['release_type'],
}
)
mozconfig_variant = job['run'].pop('mozconfig-variant', None)
if mozconfig_variant:
job['run'].setdefault('extra-config', {})['mozconfig_variant'] = mozconfig_variant
yield job
@transforms.add
def use_profile_data(config, jobs):
for job in jobs:
use_pgo = job.pop('use-pgo', False)
disable_pgo = config.params['try_task_config'].get('disable-pgo', False)
if not use_pgo or disable_pgo:
yield job
continue
# If use_pgo is True, the task uses the generate-profile task of the
# same name. Otherwise a task can specify a specific generate-profile
# task to use in the use_pgo field.
if use_pgo is True:
name = job['name']
else:
name = use_pgo
dependencies = 'generate-profile-{}'.format(name)
job.setdefault('dependencies', {})['generate-profile'] = dependencies
job.setdefault('fetches', {})['generate-profile'] = ['profdata.tar.xz']
job['worker']['env'].update({"MOZ_PGO_PROFILE_USE": "1"})
yield job
@transforms.add
def set_env(config, jobs):
"""Set extra environment variables from try command line."""
env = []
if config.params['try_mode'] == 'try_option_syntax':
env = config.params['try_options']['env'] or []
for job in jobs:
if env:
job['worker']['env'].update(dict(x.split('=') for x in env))
yield job
@transforms.add
def enable_full_crashsymbols(config, jobs):
"""Enable full crashsymbols on jobs with
'enable-full-crashsymbols' set to True and on release branches, or
on try"""
branches = RELEASE_PROJECTS | {'try', }
for job in jobs:
enable_full_crashsymbols = job['attributes'].get('enable-full-crashsymbols')
if enable_full_crashsymbols and config.params['project'] in branches:
logger.debug("Enabling full symbol generation for %s", job['name'])
else:
logger.debug("Disabling full symbol generation for %s", job['name'])
job['worker']['env']['MOZ_DISABLE_FULL_SYMBOLS'] = '1'
job['attributes'].pop('enable-full-crashsymbols', None)
yield job
@transforms.add
def use_artifact(config, jobs):
if config.params['try_mode'] == 'try_task_config':
use_artifact = config.params['try_task_config'] \
.get('templates', {}).get('artifact', {}).get('enabled')
elif config.params['try_mode'] == 'try_option_syntax':
use_artifact = config.params['try_options'].get('artifact')
else:
use_artifact = False
for job in jobs:
if (config.kind == 'build' and use_artifact and
not job.get('attributes', {}).get('nightly', False) and
job.get('index', {}).get('job-name') in ARTIFACT_JOBS):
job['treeherder']['symbol'] += 'a'
job['worker']['env']['USE_ARTIFACT'] = '1'
yield job