blob: c5f11799056f6c3be45d5947a7762427535e08b7 [file] [log] [blame]
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import collections
import contextlib
import functools
import re
import textwrap
from recipe_engine import recipe_api
from recipe_engine import util as recipe_util
class TestLauncherFilterFileInputPlaceholder(recipe_util.InputPlaceholder):
def __init__(self, api, tests):
self.raw = api.m.raw_io.input_text('\n'.join(tests))
super(TestLauncherFilterFileInputPlaceholder, self).__init__()
def render(self, test):
result = self.raw.render(test)
if not test.enabled: # pragma: no cover
result[0] = '--test-launcher-filter-file=%s' % result[0]
return result
def cleanup(self, test_enabled):
self.raw.cleanup(test_enabled)
class ChromiumApi(recipe_api.RecipeApi):
Layout = collections.namedtuple('Layout', ('env',))
def __init__(self, *args, **kwargs):
super(ChromiumApi, self).__init__(*args, **kwargs)
self._build_properties = None
self._layout = None
self._version = None
self._clang_version = None
def ensure_chromium_layout(self):
"""Ensures that Chromium build layout is installed.
Note: the layout must be installed into the engine context. The
"chromium_layout" context manager is probably a better way to access this.
Returns (ChromiumApi.Layout): The configured Chromium build layout.
"""
env = {
# CHROME_HEADLESS makes sure that running 'gclient runhooks' and other
# tools don't require user interaction.
'CHROME_HEADLESS': '1',
}
return self.Layout(
env=env,
)
@contextlib.contextmanager
def chromium_layout(self):
"""Context manager that must be entered prior to performing any Chromium
recipe operations. This is responsible for basic enviornment initialization.
See "ensure_chromium_layout" for more information.
"""
with self.m.context(env=self.ensure_chromium_layout().env):
yield
def _with_chromium_layout(fn):
"""Decorator which applies "ensure_chromium_layout" to bound ChromiumApi
functions.
This is an INTERNAL method, and specifically decorates ChromiumApi member
functions. DO NOT USE this outside of this class and module.
"""
@functools.wraps(fn)
def inner(self, *args, **kwargs):
with self.chromium_layout():
return fn(self, *args, **kwargs)
return inner
def get_config_defaults(self):
defaults = {
'HOST_PLATFORM': self.m.platform.name,
'HOST_ARCH': self.m.platform.arch,
'HOST_BITS': self.m.platform.bits,
'TARGET_PLATFORM': self.m.platform.name,
'TARGET_ARCH': self.m.platform.arch,
'TARGET_CROS_BOARD': None,
# NOTE: This is replicating logic which lives in
# chrome/trunk/src/build/common.gypi, which is undesirable. The desired
# end-state is that all the configuration logic lives in one place
# (in chromium/config.py), and the buildside gypfiles are as dumb as
# possible. However, since the recipes need to accurately contain
# {TARGET,HOST}_{BITS,ARCH,PLATFORM}, for use across many tools (of which
# gyp is one tool), we're taking a small risk and replicating the logic
# here.
'TARGET_BITS': (
32 if self.m.platform.name == 'win'
else self.m.platform.bits),
'BUILD_CONFIG': self.m.properties.get('build_config', 'Release'),
'CHECKOUT_PATH': self.m.path['checkout'],
}
return defaults
def get_env(self):
ret = {}
if self.c.env.PATH:
ret['PATH'] = self.m.path.pathsep.join(
map(str, self.c.env.PATH) + ['%(PATH)s'])
if self.c.env.LLVM_FORCE_HEAD_REVISION:
ret['LLVM_FORCE_HEAD_REVISION'] = self.c.env.LLVM_FORCE_HEAD_REVISION
if self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS:
ret['GOMA_STUBBY_PROXY_IP_ADDRESS'] = \
self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS
if self.c.env.GOMA_RPC_EXTRA_PARAMS:
ret['GOMA_RPC_EXTRA_PARAMS'] = self.c.env.GOMA_RPC_EXTRA_PARAMS
if self.c.env.GOMA_LOCAL_OUTPUT_CACHE_MAX_CACHE_AMOUNT_IN_MB:
ret['GOMA_LOCAL_OUTPUT_CACHE_MAX_CACHE_AMOUNT_IN_MB'] = \
self.c.env.GOMA_LOCAL_OUTPUT_CACHE_MAX_CACHE_AMOUNT_IN_MB
if self.c.env.GOMA_LOCAL_OUTPUT_CACHE_THRESHOLD_CACHE_AMOUNT_IN_MB:
ret['GOMA_LOCAL_OUTPUT_CACHE_THRESHOLD_CACHE_AMOUNT_IN_MB'] = \
self.c.env.GOMA_LOCAL_OUTPUT_CACHE_THRESHOLD_CACHE_AMOUNT_IN_MB
if self.c.env.GOMA_ARBITRARY_TOOLCHAIN_SUPPORT:
ret['GOMA_ARBITRARY_TOOLCHAIN_SUPPORT'] = \
self.c.env.GOMA_ARBITRARY_TOOLCHAIN_SUPPORT
if self.c.env.FORCE_MAC_TOOLCHAIN:
ret['FORCE_MAC_TOOLCHAIN'] = self.c.env.FORCE_MAC_TOOLCHAIN
return ret
@property
def build_properties(self):
return self._build_properties
@property
def output_dir(self):
"""Return the path to the built executable directory."""
return self.c.build_dir.join(self.c.build_config_fs)
def get_version(self):
"""Returns a dictionary describing the version.
The dictionary will map the name of the portion of the version to its
numeric value e.g.
{ 'MAJOR'": '51', 'MINOR': '0', 'BUILD': '2704', 'PATCH': '0' }
"""
if self._version is None:
self._version = self.get_version_from_file(
self.m.path['checkout'].join('chrome', 'VERSION'))
return self._version
def get_version_from_file(self, version_file_path, step_name='get version'):
"""Returns the version information from a specified file.
The dictionary will map the name of the portion of the version to its
numeric value e.g.
{ 'MAJOR'": '51', 'MINOR': '0', 'BUILD': '2704', 'PATCH': '0' }
"""
text = self.m.file.read_text(
step_name, version_file_path,
test_data="MAJOR=51\nMINOR=0\nBUILD=2704\nPATCH=0\n")
version = {}
for line in text.splitlines():
[k,v] = line.split('=', 1)
version[k] = v
return version
def set_build_properties(self, props):
self._build_properties = props
def configure_bot(self, builders_dict, additional_configs=None):
"""Sets up the configurations and gclient to be ready for bot update.
builders_dict is a dict of mastername -> 'builders' -> buildername ->
bot_config.
The current mastername and buildername are looked up from the
build properties; we then apply the configs specified in bot_config
as appropriate.
Returns a tuple of (buildername, bot_config) for subsequent use in
the recipe.
"""
additional_configs = additional_configs or []
# TODO: crbug.com/358481 . The build_config should probably be a property
# passed in from the slave config, but that doesn't exist today, so we
# need a lookup mechanism to map bot name to build_config.
mastername = self.m.properties.get('mastername')
buildername = self.m.properties.get('buildername')
master_dict = builders_dict.get(mastername, {})
bot_config = master_dict.get('builders', {}).get(buildername)
self.set_config(bot_config.get('chromium_config', 'chromium'),
**bot_config.get('chromium_config_kwargs', {}))
for c in bot_config.get('chromium_apply_config', []):
self.apply_config(c)
for c in additional_configs:
self.apply_config(c)
# Note that we have to call gclient.set_config() and apply_config() *after*
# calling chromium.set_config(), above, because otherwise the chromium
# call would reset the gclient config to its defaults.
self.m.gclient.set_config('chromium')
for c in bot_config.get('gclient_apply_config', []):
self.m.gclient.apply_config(c)
return (buildername, bot_config)
def _run_ninja(self, ninja_command, name=None, ninja_env=None,
ninja_confirm_noop=False, **kwargs):
"""
Run ninja with given command and env.
Args:
ninja_command: Command used for build.
This is sent as part of log.
(e.g. ['ninja', '-C', 'out/Release'])
name: Name of compile step.
ninja_env: Environment for ninja.
ninja_confirm_noop (bool):
If this is True, check that ninja does nothing in second build.
Raises:
StepFailure or InfraFailure if it fails to build or
occurs something failure on goma steps.
"""
# TODO(https://crbug.com/752212) Remove this condition after fixing the bug.
# This bug makes ninja wrapper can't parse arguments correctly.
if kwargs.get('wrapper'):
with self.m.context(env=ninja_env):
self.m.step(name or 'compile', ninja_command, **kwargs)
else:
script = self.resource('ninja_wrapper.py')
script_args = [
'--ninja_info_output',
self.m.json.output(add_json_log='on_failure', name='ninja_info'),
'--failure_output',
self.m.raw_io.output(add_output_log='on_failure',
name='failure_summary'),
]
script_args.append('--')
script_args.extend(ninja_command)
example_json = {'failures': [{
'output_nodes': ['a.o'],
'rule': 'CXX',
'output': 'error info',
'dependencies': ['b/a.cc']
}]}
example_failure_output = textwrap.dedent("""\
[1/1] CXX a.o
error info
""")
step_test_data = (lambda: self.m.json.test_api.output(
example_json, name='ninja_info') +
self.m.raw_io.test_api.output(
example_failure_output, name='failure_summary'))
with self.m.context(env=ninja_env):
self.m.python(name or 'compile', script=script,
args=script_args,
step_test_data=step_test_data,
**kwargs)
ninja_command_explain = ninja_command + ['-d', 'explain', '-n']
ninja_no_work = 'ninja: no work to do.'
with self.m.context(env=ninja_env):
step_result = self.m.step(
(name or 'compile') + ' confirm no-op',
ninja_command_explain,
stdout=self.m.raw_io.output_text(),
step_test_data=(
lambda: self.m.raw_io.test_api.stream_output(
ninja_no_work
)))
if ninja_no_work in step_result.stdout:
# No dependency issue found.
return
step_result.presentation.step_text = (
"This should have been a no-op, but it wasn't.")
if ninja_confirm_noop:
step_result.presentation.status = self.m.step.FAILURE
raise self.m.step.StepFailure(
"""Failing build because ninja reported work to do.
This means that after completing a compile, another was run and
it resulted in still having work to do (that is, a no-op build
wasn't a no-op). Consult the first "ninja explain:" line for a
likely culprit.""")
# This is appeared in Output property.
# https://chromium.googlesource.com/infra/luci/luci-go/+/master/buildbucket/proto/build.proto
# Used to detect incorrect build rule (crbug.com/914264).
step_result.presentation.properties['confirm no-op failure'] = True
def _run_ninja_with_goma(self, ninja_command, ninja_env, name=None,
ninja_log_outdir=None, ninja_log_compiler=None,
goma_env=None,
ninja_confirm_noop=False, **kwargs):
"""
Run ninja with goma.
This function start goma, call _run_ninja and stop goma using goma module.
Args:
ninja_command: Command used for build.
This is sent as part of log.
(e.g. ['ninja', '-C', 'out/Release'])
ninja_env: Environment for ninja.
name: Name of compile step.
ninja_log_outdir: Directory of ninja log. (e.g. "out/Release")
ninja_log_compiler: Compiler used in ninja. (e.g. "clang")
goma_env: Environment controlling goma behavior.
ninja_confirm_noop (bool):
If this is True, check that ninja does nothing in second build.
Raises:
StepFailure or InfraFailure if it fails to build or
occurs something failure on goma steps.
"""
build_exit_status = None
self.m.goma.start(goma_env)
try:
if not self.c.compile_py.goma_use_local:
# Do not allow goma to invoke local compiler.
ninja_env['GOMA_USE_LOCAL'] = 'false'
self._run_ninja(ninja_command, name, ninja_env,
ninja_confirm_noop, **kwargs)
build_exit_status = 0
except self.m.step.StepFailure as e:
build_exit_status = e.retcode
raise e
finally:
self.m.goma.stop(ninja_log_outdir=ninja_log_outdir,
ninja_log_compiler=ninja_log_compiler,
ninja_log_command=ninja_command,
build_exit_status=build_exit_status,
build_step_name=name)
# TODO(tikuta): Remove use_goma_module.
# Decrease the number of ways configuring with or without goma.
@_with_chromium_layout
def compile(self, targets=None, name=None, out_dir=None,
target=None, use_goma_module=False, **kwargs):
"""Return a compile.py invocation.
Args:
targets: List of build targets to compile.
name: Name of compile step.
out_dir: Output directory for the compile.
target: Custom config name to use in the output directory (defaults to
"Release" or "Debug").
use_goma_module (bool): If True, use the goma recipe module.
"""
targets = targets or self.c.compile_py.default_targets.as_jsonish()
assert isinstance(targets, (list, tuple))
if self.c.use_gyp_env and self.c.gyp_env.GYP_DEFINES.get('clang', 0) == 1:
# Get the Clang revision before compiling.
self._clang_version = self.get_clang_version()
goma_env = self.get_env()
goma_env.update(self.m.context.env)
ninja_env = goma_env.copy()
goma_env['GOMA_CACHE_DIR'] = self.m.goma.default_cache_path
# Enable goma DepsCache
goma_env['GOMA_DEPS_CACHE_FILE'] = "goma_deps_cache"
if self.c.compile_py.mode:
if (self.c.compile_py.mode == 'google_chrome' or
self.c.compile_py.mode == 'official'):
ninja_env['CHROMIUM_BUILD'] = '_google_chrome'
if self.c.compile_py.mode == 'official':
# Official builds are always Google Chrome.
ninja_env['CHROME_BUILD_TYPE'] = '_official'
# This may be needed for running `ninja -t msvc` in
# src/build/toolchain/win/BUILD.gn.
# Note that this may not be needed when ninja is launched directly since
# Windows does search for the directory of the parent process (which is
# also ninja). However, when ninja is launched under another subprocess
# (such as cmd), this is necessary. Therefore, adding the ninja's
# directory directly will make the code less brittle.
# This is only for LUCI, buildbot bots already have this directory
# includeded in PATH.
# TODO(crbug.com/872740): Remove once msvc -t processes are no longer
# needed.
if self.c.TARGET_PLATFORM == 'win' and self.m.runtime.is_luci:
ninja_env['PATH'] = self.m.path.pathsep.join(
(self.m.path.dirname(self.m.depot_tools.ninja_path), '%(PATH)s'))
if self.c.compile_py.goma_hermetic:
goma_env['GOMA_HERMETIC'] = self.c.compile_py.goma_hermetic
if self.c.compile_py.goma_enable_localoutputcache:
# Use per-slave cache. LocalOutputCache could use a lot of disks.
# To run GC for older caches, we should share the same build
# among builders.
goma_env['GOMA_LOCAL_OUTPUT_CACHE_DIR'] = (
self.m.path.join(self.m.goma.default_cache_path_per_slave,
"localoutputcache"))
if self.c.compile_py.goma_enable_global_file_stat_cache:
goma_env['GOMA_ENABLE_GLOBAL_FILE_STAT_CACHE'] = 'true'
if self.c.compile_py.goma_max_active_fail_fallback_tasks:
goma_env['GOMA_MAX_ACTIVE_FAIL_FALLBACK_TASKS'] = (
self.c.compile_py.goma_max_active_fail_fallback_tasks)
if (self.m.tryserver.is_tryserver or
self.c.compile_py.goma_failfast):
# We rely on goma to meet cycle time goals on the tryserver. It's better
# to fail early.
goma_env['GOMA_FAIL_FAST'] = 'true'
else:
goma_env['GOMA_ALLOWED_NETWORK_ERROR_DURATION'] = '1800'
# TODO(crbug.com/810460): Remove the system python wrapping.
optional_system_python = contextlib.contextmanager(
lambda: (x for x in [None]))()
if self.c.TARGET_CROS_BOARD:
# Wrap 'compile' through 'cros chrome-sdk'
kwargs['wrapper'] = self.get_cros_chrome_sdk_wrapper()
optional_system_python = self.m.chromite.with_system_python()
if self.m.platform.is_linux and self.c.TARGET_CROS_BOARD:
out_dir = 'out_%s' % self.c.TARGET_CROS_BOARD
elif out_dir is None:
out_dir = 'out'
target_output_dir = self.m.path.join(self.m.path['checkout'], out_dir,
target or self.c.build_config_fs)
target_output_dir = self.m.path.abspath(target_output_dir)
ninja_path = self.m.depot_tools.ninja_path
if self.c.compile_py.use_autoninja:
ninja_path = self.m.depot_tools.autoninja_path
command = [str(ninja_path), '-w', 'dupbuild=err', '-C', target_output_dir]
if self.c.compile_py.show_ninja_stats:
command.extend(['-d', 'stats'])
if self.c.compile_py.build_args:
command.extend(self.c.compile_py.build_args)
# TODO(tikuta): Remove this and let goma module set '-j'
# inside build_with_goma.
if use_goma_module:
if self.m.runtime.is_luci:
# The right way to configure goma jobs number is in cr-buildbucket.cfg.
# See also doc for goma.jobs.
command += ['-j', self.m.goma.jobs]
if self.m.goma.debug:
ninja_env['GOMA_DUMP'] = '1'
else:
# TODO(tandrii): delete this block after we migrate off buildbot.
# Set -j just before 'with self.m.goma.build_with_goma('
# for ninja_log_command being set correctly if starting goma
# fails.
if self.c.compile_py.goma_high_parallel:
# This flag is set for experiment.
command += ['-j', 3 * self.m.goma.recommended_goma_jobs]
else:
command += ['-j', self.m.goma.recommended_goma_jobs]
if targets is not None:
# Add build targets to command ('All', 'chrome' etc).
command += targets
assert 'env' not in kwargs
assert 'cwd' not in kwargs
if not use_goma_module:
compile_exit_status = 1
try:
with optional_system_python:
with self.m.context(
cwd=self.m.context.cwd or self.m.path['checkout']):
self._run_ninja(
ninja_command=command,
name=name or 'compile',
ninja_env=ninja_env,
ninja_confirm_noop=self.c.compile_py.ninja_confirm_noop,
**kwargs)
compile_exit_status = 0
except self.m.step.StepFailure as e:
compile_exit_status = e.retcode
raise e
finally:
upload_ninja_log_args = [
'--gsutil-py-path', self.m.depot_tools.gsutil_py_path,
'--skip-sendgomatsmon',
'--ninja-log-outdir', target_output_dir,
'--ninja-log-command-file', self.m.json.input(command),
'--build-exit-status', compile_exit_status,
'--ninja-log-compiler', self.c.compile_py.compiler or 'unknown'
]
self.m.build.python(
name='upload_ninja_log',
script=self.repo_resource(
'scripts', 'slave', 'upload_goma_logs.py'),
args=upload_ninja_log_args,
venv=True)
return
try:
with optional_system_python:
with self.m.context(cwd=self.m.context.cwd or self.m.path['checkout']):
self._run_ninja_with_goma(
ninja_command=command,
ninja_env=ninja_env,
name=name or 'compile',
goma_env=goma_env,
ninja_log_outdir=target_output_dir,
ninja_log_compiler=self.c.compile_py.compiler or 'goma',
ninja_confirm_noop=self.c.compile_py.ninja_confirm_noop,
**kwargs)
except self.m.step.StepFailure as e:
# Handle failures caused by goma.
failure_result_code = ''
json_status = self.m.goma.jsonstatus['notice'][0]
if (not json_status.get('infra_status')):
failure_result_code = 'GOMA_SETUP_FAILURE'
elif json_status['infra_status']['ping_status_code'] != 200:
failure_result_code = 'GOMA_PING_FAILURE'
elif json_status['infra_status'].get('num_user_error', 0) > 0:
failure_result_code = 'GOMA_BUILD_ERROR'
if failure_result_code:
assert len(failure_result_code) <= 20
properties = self.m.step.active_result.presentation.properties
if not properties.get('extra_result_code'):
properties['extra_result_code'] = []
properties['extra_result_code'].append(failure_result_code)
# FIXME(yyanagisawa): mark the active step exception on goma error.
#
# This is workaround to make goma error recognized as infra exception.
# 1. even if self.m.step.InfraFailure is raised, the step is not shown
# as EXCEPTION step in milo. We need to make status EXCEPTION to
# make the step annotated as STEP_EXCEPTION. (crbug.com/856914)
# 2. I believe it natural to mark compile step exception but we cannot.
# since this step is executed after compile step, it is recognized as
# finalized step, and we cannot edit such a step. Let us touch
# active result instead.
# However, if we pick the active step, the last step of
# 'postprocess_goma' would be chosen, and it is confusing.
# Let us create a fake step to represent the case.
# It might be better than both not showing exception and marking
# 'stop cloudtail' as exception.
fake_step = self.m.step('infra status', [])
fake_step.presentation.status = self.m.step.EXCEPTION
fake_step.presentation.step_text = failure_result_code
raise self.m.step.InfraFailure('Infra compile failure: %s' % e)
raise e
@recipe_util.returns_placeholder
def test_launcher_filter(self, tests):
return TestLauncherFilterFileInputPlaceholder(self, tests)
@_with_chromium_layout
def runtest(self, test, args=None, xvfb=False, name=None, annotate=None,
results_url=None, perf_dashboard_id=None, test_type=None,
python_mode=False, point_id=None, revision=None,
webkit_revision=None, test_launcher_summary_output=None,
perf_id=None, perf_config=None, chartjson_file=False,
use_histograms=False,
tee_stdout_file=None, **kwargs):
"""Return a runtest.py invocation."""
args = args or []
assert isinstance(args, list), '%r' % args
t_name, ext = self.m.path.splitext(self.m.path.basename(test))
if not python_mode and self.m.platform.is_win and ext == '':
test += '.exe'
full_args = ['--target', self.c.build_config_fs]
if self.c.TARGET_PLATFORM == 'android':
full_args.extend(['--test-platform', 'android'])
if self.m.platform.is_linux:
full_args.append('--xvfb' if xvfb else '--no-xvfb')
properties_json = self.m.json.dumps(self.m.properties.legacy())
full_args.extend(['--factory-properties', properties_json,
'--build-properties', properties_json])
if annotate:
full_args.append('--annotate=%s' % annotate)
kwargs['allow_subannotations'] = True
if results_url:
full_args.append('--results-url=%s' % results_url)
if perf_dashboard_id:
full_args.append('--perf-dashboard-id=%s' % perf_dashboard_id)
if perf_id:
full_args.append('--perf-id=%s' % perf_id)
if perf_config:
full_args.extend(['--perf-config', self.m.json.dumps(perf_config)])
# This replaces the step_name that used to be sent via factory_properties.
if test_type:
full_args.append('--test-type=%s' % test_type)
step_name = name or t_name
full_args.append('--step-name=%s' % step_name)
if chartjson_file:
full_args.append('--chartjson-file')
full_args.append(self.m.json.output())
if 'step_test_data' not in kwargs:
kwargs['step_test_data'] = lambda: self.m.json.test_api.output([])
if use_histograms:
full_args.append('--use-histograms')
if test_launcher_summary_output:
full_args.extend([
'--test-launcher-summary-output',
test_launcher_summary_output
])
# These properties are specified on every bot, so pass them down
# unconditionally.
full_args.append('--builder-name=%s' % self.m.buildbucket.builder_name)
full_args.append('--slave-name=%s' % self.m.properties['bot_id'])
# A couple of the recipes contain tests which don't specify a buildnumber,
# so make this optional.
if self.m.properties.get('buildnumber') is not None:
full_args.append('--build-number=%s' % self.m.buildbucket.build.number)
if ext == '.py' or python_mode:
full_args.append('--run-python-script')
if point_id:
full_args.append('--point-id=%d' % point_id)
if revision:
full_args.append('--revision=%s' % revision)
if webkit_revision:
# TODO(kbr): figure out how to cover this line of code with
# tests after the removal of the GPU recipe. crbug.com/584469
full_args.append(
'--webkit-revision=%s' % webkit_revision) # pragma: no cover
if (self.c.runtests.enable_asan or
self.c.runtests.run_asan_test):
full_args.append('--enable-asan')
if self.c.runtests.enable_lsan:
full_args.append('--enable-lsan')
if self.c.runtests.enable_msan:
full_args.append('--enable-msan')
if self.c.runtests.enable_tsan:
full_args.append('--enable-tsan')
if self.c.runtests.enable_memcheck:
full_args.extend([
'--pass-build-dir',
'--pass-target',
'--run-shell-script',
self.c.runtests.memory_tests_runner,
'--test', t_name,
'--tool', 'memcheck',
])
else:
full_args.append(test)
full_args.extend(self.c.runtests.test_args)
full_args.extend(args)
runtest_path = self.repo_resource('scripts', 'slave', 'runtest.py')
if tee_stdout_file:
full_args = [tee_stdout_file, '--', 'python', runtest_path] + full_args
runtest_path = self.repo_resource(
'scripts', 'slave', 'tee.py')
with self.m.build.gsutil_py_env():
# We need this, as otherwise runtest.py fails due to expecting the cwd to
# be the checkout, when instead it's kitchen-workdir. We also can't use
# self.m.path['checkout'] since that has an extra '/src' added onto it
# compared to what runtest.py expects.
if self.m.runtime.is_luci:
with self.m.context(cwd=self.m.path['cache'].join('builder')):
return self.m.build.python(
step_name,
runtest_path,
args=full_args,
**kwargs
)
return self.m.build.python(
step_name,
runtest_path,
args=full_args,
**kwargs
)
@_with_chromium_layout
def sizes(self, results_url=None, perf_id=None, platform=None, **kwargs):
"""Return a sizes.py invocation.
This uses runtests.py to upload the results to the perf dashboard."""
sizes_script = self.m.path['checkout'].join('infra', 'scripts', 'legacy',
'scripts', 'slave', 'chromium', 'sizes.py')
sizes_args = ['--target', self.c.build_config_fs]
if platform:
sizes_args.extend(['--platform', platform])
else:
sizes_args.extend(['--platform', self.c.TARGET_PLATFORM])
run_tests_args = ['--target', self.c.build_config_fs,
'--no-xvfb']
properties_json = self.m.json.dumps(self.m.properties.legacy())
run_tests_args.extend(['--factory-properties', properties_json,
'--build-properties', properties_json])
run_tests_args.extend([
'--test-type=sizes',
'--builder-name=%s' % self.m.properties['buildername'],
'--slave-name=%s' % self.m.properties['bot_id'],
'--build-number=%s' % self.m.properties['buildnumber'],
'--run-python-script'])
if perf_id:
assert results_url is not None
run_tests_args.extend(['--annotate=graphing',
'--results-url=%s' % results_url,
'--perf-dashboard-id=sizes',
'--perf-id=%s' % perf_id])
# If we're on LUCI, we need to upload using the HistogramSet format
# because IP whitelisting (what the older ChartJSON format uses for
# authentication) does not really work on LUCI.
if self.m.runtime.is_luci:
run_tests_args.append('--use-histograms')
# If we have a clang revision, add that to the perf data point.
# TODO(hans): We want this for all perf data, not just sizes.
if self._clang_version:
clang_rev = re.match(r'(\d+)(-\d+)?', self._clang_version).group(1)
run_tests_args.append(
"--perf-config={'r_clang_rev': '%s'}" % clang_rev)
full_args = run_tests_args + [sizes_script] + sizes_args
return self.m.build.python(
'sizes', self.repo_resource('scripts', 'slave', 'runtest.py'),
full_args, allow_subannotations=True, **kwargs)
@_with_chromium_layout
def get_clang_version(self, **kwargs):
with self.m.context(env=self.get_env()):
step_result = self.m.build.python(
'clang_revision',
self.repo_resource('scripts', 'slave', 'clang_revision.py'),
args=['--src-dir', self.m.path['checkout'],
'--output-json', self.m.json.output()],
step_test_data=lambda:
self.m.json.test_api.output({'clang_revision': '123456-7'}),
allow_subannotations=True,
**kwargs)
return step_result.json.output['clang_revision']
def get_cros_chrome_sdk_wrapper(self):
"""Returns: a wrapper command for 'cros chrome-sdk'
Args:
external: (bool) If True, force the wrapper to prefer external board
configurations over internal ones, even if the latter is available.
clean: (bool) If True, instruct the wrapper to clean any previous
state data.
"""
assert self.c.TARGET_CROS_BOARD
wrapper = [
self.m.depot_tools.cros_path, 'chrome-sdk', '--nogn-gen',
'--board=%s' % (self.c.TARGET_CROS_BOARD,),
'--nocolor', '--log-level=debug',
'--cache-dir', self.m.path['checkout'].join('build', 'cros_cache')]
wrapper += self.c.cros_sdk.args
# With neither arg, the cros chrome-sdk will try external configs but
# fallback to internal configs if none are available. Avoid that fallback
# behavior on the bots by explicitly using either external or internal
# configs.
if self.c.cros_sdk.external:
wrapper += ['--use-external-config']
else:
wrapper += ['--internal']
if self.c.compile_py.goma_dir:
wrapper += ['--gomadir', self.c.compile_py.goma_dir]
# Since we are very sure api.chromium.compile starts compiler_proxy,
# and starting compiler_proxy here make it difficult for us to
# investigate the compiler_proxy start-up failure reason,
# let me stop starting compiler_proxy. (crbug.com/639432)
wrapper += ['--nostart-goma']
# NOTE: --fastbuild is no longer supported in 'cros chrome-sdk'.
wrapper += ['--']
return wrapper
def ensure_goma(self, client_type='release'):
no_goma_compiler = self.c.compile_py.compiler or ''
if no_goma_compiler == 'goma-clang':
no_goma_compiler = 'clang'
elif no_goma_compiler == 'goma':
no_goma_compiler = None
if (self.c.use_gyp_env and
'use_goma' in self.c.gyp_env.GYP_DEFINES and
self.c.gyp_env.GYP_DEFINES['use_goma'] == 0):
self.c.compile_py.compiler = no_goma_compiler
return
goma_dir = self.m.goma.ensure_goma(client_type=client_type)
if self.c.use_gyp_env:
self.c.gyp_env.GYP_DEFINES['gomadir'] = goma_dir
self.c.gyp_env.GYP_DEFINES['use_goma'] = 1
self.c.compile_py.goma_dir = goma_dir
def get_mac_toolchain_installer(self):
assert self.c.mac_toolchain.installer_cipd_package
assert self.c.mac_toolchain.installer_version
assert self.c.mac_toolchain.installer_cmd
cipd_root = self.m.path['start_dir']
cipd_pkg = self.c.mac_toolchain.installer_cipd_package
pkg_version = self.c.mac_toolchain.installer_version
cmd = self.c.mac_toolchain.installer_cmd
self.m.cipd.ensure(cipd_root, {cipd_pkg: pkg_version})
return cipd_root.join(cmd)
# TODO(crbug.com/797051): remove this when the old "hermetic" flow is
# no longer used.
def delete_old_mac_toolchain(self):
"""Remove the old "hermetic" toolchain cache.
This is to expose any lingering dependencies on the old cache.
"""
old_cache = self.m.path['checkout'].join(
'build', '%s_files' % self.m.chromium.c.TARGET_PLATFORM)
self.m.file.rmtree('delete deprecated Xcode cache', old_cache)
def ensure_mac_toolchain(self):
if not self.c.mac_toolchain.enabled:
return
xcode_build_version = self.c.mac_toolchain.xcode_build_version.lower()
kind = self.c.TARGET_PLATFORM
cipd_credentials = self.c.mac_toolchain.cipd_credentials
# TODO(sergeyberezin): for LUCI migration, this must be a requested named
# cache. Make sure it exists, to avoid downloading Xcode on every build.
xcode_app_path = self.m.path['cache'].join(
'xcode_%s_%s.app' % (kind, xcode_build_version))
with self.m.step.nest('ensure xcode') as step_result:
step_result.presentation.step_text = (
'Ensuring Xcode version %s in %s' % (
xcode_build_version, xcode_app_path))
self.delete_old_mac_toolchain()
mac_toolchain_cmd = self.get_mac_toolchain_installer()
install_args = [
mac_toolchain_cmd, 'install',
'-kind', kind,
'-xcode-version', xcode_build_version,
'-output-dir', xcode_app_path,
]
if cipd_credentials:
install_args.extend(['-service-account-json', cipd_credentials])
self.m.step('install xcode', install_args, infra_step=True)
self.m.step('select xcode',
['sudo', 'xcode-select', '-switch', xcode_app_path],
infra_step=True)
def ensure_toolchains(self):
if self.c.HOST_PLATFORM == 'mac':
self.ensure_mac_toolchain()
def clobber_if_needed(self):
"""Add an explicit clobber step if requested."""
# clobber_before_runhooks is true for bots that apply the 'clobber' config,
# that is for bots that do clobber bots on every build.
# properties.get('clobber') is true on bots that normally don't clobber,
# when the "Clobber" button in the buildbot UI is pressed.
if (self.c.clobber_before_runhooks or
self.m.properties.get('clobber') is not None):
self.m.file.rmtree('clobber', self.output_dir)
@_with_chromium_layout
def runhooks(self, env=None, **kwargs):
"""Run the build-configuration hooks for chromium."""
# runhooks might write things into the output directory, so clobber before
# that.
self.clobber_if_needed()
runhooks_env = self.get_env()
runhooks_env.update(self.m.context.env)
runhooks_env.update(env or {})
# On Mac, when mac toolchain installation is not enabled in the recipe, the
# toolchain is installed in runhooks, which requires the installer binary.
if self.c.HOST_PLATFORM == 'mac' and not self.c.mac_toolchain.enabled:
runhooks_env['MAC_TOOLCHAIN_INSTALLER'] = (
self.get_mac_toolchain_installer())
if not self.m.runtime.is_luci:
runhooks_env['MAC_TOOLCHAIN_CREDS'] = (
self.c.mac_toolchain.cipd_credentials)
# CrOS "chrome_sdk" builds fully override GYP_DEFINES in the wrapper. Zero
# it to not show confusing information in the build logs.
if self.c.use_gyp_env and not self.c.TARGET_CROS_BOARD:
# TODO(sbc): Ideally we would not need gyp_env set during runhooks when
# we are not running gyp, but there are some hooks (such as sysroot
# installation that peek at GYP_DEFINES and modify thier behaviour
# accordingly.
runhooks_env.update(self.c.gyp_env.as_jsonish())
# runhooks will invoke the 'cros chrome-sdk' if we're building for a cros
# board, so use system python if this is the case.
# TODO(crbug.com/810460): Remove the system python wrapping.
optional_system_python = contextlib.contextmanager(
lambda: (x for x in [None]))()
if self.c.TARGET_CROS_BOARD:
# Wrap 'runhooks' through 'cros chrome-sdk'
optional_system_python = self.m.chromite.with_system_python()
with optional_system_python:
with self.m.context(env=runhooks_env):
self.m.gclient.runhooks(**kwargs)
@_with_chromium_layout
def run_gn(self, use_goma=False, gn_path=None, build_dir=None, **kwargs):
if not gn_path:
gn_path = self.m.depot_tools.gn_py_path
gn_args = list(self.c.gn_args)
# TODO(dpranke): Figure out if we should use the '_x64' thing to
# consistent w/ GYP, or drop it to be consistent w/ the other platforms.
build_dir = build_dir or '//out/%s' % self.c.build_config_fs
if self.c.BUILD_CONFIG == 'Debug':
gn_args.append('is_debug=true')
if self.c.BUILD_CONFIG == 'Release':
gn_args.append('is_debug=false')
if self.c.TARGET_PLATFORM == 'android':
gn_args.append('target_os="android"')
elif self.c.TARGET_PLATFORM in ('mac', 'win'):
assert self.c.TARGET_ARCH == 'intel'
elif self.c.TARGET_PLATFORM == 'linux':
assert self.c.TARGET_ARCH in ('arm', 'intel', 'mips')
gn_cpu = {
('intel', 32): 'x86',
('intel', 64): 'x64',
('arm', 32): 'arm',
('arm', 64): 'arm64',
('mips', 32): 'mips',
('mipsel', 32): 'mipsel',
}.get((self.c.TARGET_ARCH, self.c.TARGET_BITS))
if gn_cpu:
gn_args.append('target_cpu="%s"' % gn_cpu)
gn_env = self.get_env()
# TODO: crbug.com/395784.
# Consider getting the flags to use via the project_generator config
# and/or modifying the goma config to modify the gn flags directly,
# rather than setting the gn_args flags via a parameter passed to
# run_gn(). We shouldn't have *three* different mechanisms to control
# what args to use.
if use_goma:
gn_args.append('use_goma=true')
gn_args.append('goma_dir="%s"' % self.c.compile_py.goma_dir)
# Do not allow goma to invoke local compiler.
gn_env['GOMA_USE_LOCAL'] = 'false'
gn_args.extend(self.c.project_generator.args)
# TODO(jbudorick): Change this s.t. no clients use gn.py.
step_args = [
'--root=%s' % str(self.m.path['checkout']),
'gen',
build_dir,
'--args=%s' % ' '.join(gn_args),
]
with self.m.context(
cwd=kwargs.get('cwd', self.m.path['checkout']), env=gn_env):
if str(gn_path).endswith('.py'):
self.m.python(name='gn', script=gn_path, args=step_args, **kwargs)
else:
self.m.step(name='gn', cmd=[gn_path] + step_args, **kwargs)
def _mb_isolate_map_file_args(self):
for isolate_map_path in self.c.project_generator.isolate_map_paths:
yield '--isolate-map-file'
yield isolate_map_path
def _mb_build_dir_args(self, build_dir):
if not build_dir:
out_dir = 'out'
if self.c.TARGET_CROS_BOARD:
out_dir += '_%s' % self.c.TARGET_CROS_BOARD
build_dir = '//%s/%s' % (out_dir, self.c.build_config_fs)
return [build_dir]
@_with_chromium_layout
def run_mb_cmd(self, name, mb_command, mastername, buildername,
mb_path=None, mb_config_path=None,
chromium_config=None, phase=None, use_goma=True,
android_version_code=None, android_version_name=None,
additional_args=None, **kwargs):
"""Run an arbitrary mb command.
Args:
name: The name of the step.
mb_command: The mb command to run.
mastername: The name of the master of the configuration to run mb for.
buildername: The name of the builder of the configuration to run mb for.
mb_path: The path to the source directory containing the mb.py script. If
not provided, the subdirectory tools/mb within the source tree will be
used.
mb_config_path: The path to the configuration file containing the master
and builder specifications to be used by mb. If not provided, the
project_generator.config_path config value will be used. If that is
falsey, then mb_config.pyl under the directory identified by mb_path
will be used.
chromium_config: The chromium config object to use. If not provided,
self.c will be used.
additional_args: Any args to the mb script besodes those for setting the
master, builder and the path to the config file.
**kwargs: Additional arguments to be forwarded onto the python API.
"""
chromium_config = chromium_config or self.c
mb_path = mb_path or self.m.path['checkout'].join('tools', 'mb')
mb_config_path = (
mb_config_path or chromium_config.project_generator.config_path or
self.m.path.join(mb_path, 'mb_config.pyl'))
args = [
mb_command,
'-m', mastername,
'-b', buildername,
'--config-file', mb_config_path,
]
if phase is not None:
args += [ '--phase', str(phase) ]
if use_goma:
# self.c instead of chromium_config is not a mistake here, if we have
# already ensured goma, we don't need to do it for this config object
goma_dir = self.c.compile_py.goma_dir
# TODO(gbeaty): remove this weird goma fallback or cover it
if not goma_dir: # pragma: no cover
# This method defaults to use_goma=True, which doesn't necessarily
# match build-side configuration. However, MB is configured
# src-side, and so it might be actually using goma.
self.ensure_goma()
goma_dir = self.c.compile_py.goma_dir
if goma_dir:
args += ['--goma-dir', goma_dir]
if android_version_code:
args += ['--android-version-code=%s' % android_version_code]
if android_version_name:
args += ['--android-version-name=%s' % android_version_name]
step_kwargs = {
'name': name,
'script': mb_path.join('mb.py'),
'args': args + (additional_args or []),
}
# TODO(crbug.com/810460): Remove the system python wrapping.
optional_system_python = contextlib.contextmanager(
lambda: (x for x in [None]))()
if chromium_config.TARGET_CROS_BOARD:
# Wrap 'mb' through 'cros chrome-sdk'
step_kwargs['wrapper'] = self.get_cros_chrome_sdk_wrapper()
optional_system_python = self.m.chromite.with_system_python()
step_kwargs.update(kwargs)
# If an environment was provided, copy it so that we don't modify the
# caller's data
# This runs with an almost-bare env being passed along, so we get a clean
# environment without any GYP_DEFINES being present to cause confusion.
env = self.get_env()
if use_goma:
# Do not allow goma to invoke local compiler.
# GOMA_USE_LOCAL is passed to gomacc from ninja.
# And in windows, env var for ninja is specified in `gn gen` step.
# We don't need to disallow local compile,
# but we want to utilize remote cpu resource more.
env['GOMA_USE_LOCAL'] = 'false'
env.update(self.m.context.env)
with optional_system_python:
with self.m.context(
# TODO(phajdan.jr): get cwd from context, not kwargs.
cwd=kwargs.get('cwd', self.m.path['checkout']),
env=env):
return self.m.python(**step_kwargs)
_LOOKUP_ARGS_RE = re.compile(r'Writing """\\?\s*(.*)""" to _path_/args.gn',
re.DOTALL)
@_with_chromium_layout
def mb_analyze(self, mastername, buildername, analyze_input,
name=None, mb_path=None, mb_config_path=None,
chromium_config=None, build_dir=None, phase=None, **kwargs):
"""Determine which targets need to be built and tested.
Args:
mastername: The name of the master for the build configuration to
analyze.
buildername: The name of the builder for the build configuration to
analyze.
analyze_input: a dict of the following form:
{
'files': ['affected/file1', 'affected/file2', ...],
'test_targets': ['test_target1', 'test_target2', ...],
'additional_compile_targets': ['target1', 'target2', ...],
}
Returns:
The StepResult from the analyze command.
"""
name = name or 'analyze'
mb_args = ['-v']
mb_args.extend(self._mb_isolate_map_file_args())
mb_args.extend(self._mb_build_dir_args(build_dir))
mb_args.extend([self.m.json.input(analyze_input), self.m.json.output()])
return self.run_mb_cmd(
name, 'analyze', mastername, buildername,
mb_path=mb_path,
mb_config_path=mb_config_path,
chromium_config=chromium_config,
phase=phase,
# Ignore goma for analysis.
use_goma=False,
additional_args=mb_args,
step_test_data=lambda: self.m.json.test_api.output(
{
'status': 'No dependency',
'compile_targets': [],
'test_targets': [],
}),
**kwargs)
@_with_chromium_layout
def mb_lookup(self, mastername, buildername, name=None,
mb_path=None, mb_config_path=None,
chromium_config=None, phase=None, use_goma=True,
android_version_code=None, android_version_name=None,
gn_args_location=None, gn_args_max_text_lines=None):
"""Lookup the GN args for the build.
Args:
mastername: The name of the master for the build configuration to
look up.
buildername: The name of the builder for the build configuration to
look up.
name: The name of the step. If not provided 'lookup GN args' will be used.
mb_path: The path to the source directory containing the mb.py script. If
not provided, the subdirectory tools/mb within the source tree will be
used.
mb_config_path: The path to the configuration file containing the master
and builder specifications to be used by mb. If not provided, the
project_generator.config_path config value will be used. If that is
falsey, then mb_config.pyl under the directory identified by mb_path
will be used.
chromium_config: The chromium config object to use. If not provided,
self.c will be used.
gn_args_location: Controls where the GN args for the build should be
presented. By default or if gn.DEFAULT, the args will be in step_text if
the count of lines is less than gn_args_max_text_lines or the logs
otherwise. To force the presentation to the step_text or logs, use
gn.TEXT or gn.LOGS, respectively.
gn_args_max_text_lines: The maximum number of lines of GN args to display
in the step_text when using the default behavior for displaying GN args.
Returns:
The content of the args.gn file.
"""
name = name or 'lookup GN args'
result = self.run_mb_cmd(
name, 'lookup', mastername, buildername,
mb_path=mb_path,
mb_config_path=mb_config_path,
chromium_config=chromium_config,
phase=phase,
use_goma=use_goma,
android_version_code=android_version_code,
android_version_name=android_version_name,
ok_ret='any',
stdout=self.m.raw_io.output_text(),
step_test_data=lambda: self.m.raw_io.test_api.stream_output(
'\n'
'Writing """\\\n'
'goma_dir = "/b/build/slave/cache/goma_client"\n'
'target_cpu = "x86"\n'
'use_goma = true\n'
'""" to _path_/args.gn.\n'
'\n'
'/fake-path/chromium/src/buildtools/linux64/gn gen _path_'
))
match = self._LOOKUP_ARGS_RE.search(result.stdout)
if not match:
result.presentation.step_text = (
'Failed to extract GN args from output of "mb lookup"')
result.presentation.logs['mb lookup output'] = result.stdout.splitlines()
result.presentation.status = self.m.step.EXCEPTION
raise self.m.step.InfraFailure('Failed to extract GN args')
gn_args = match.group(1)
if gn_args is not None:
reformatted_gn_args = self.m.gn.reformat_args(gn_args)
self.m.gn.present_args(result, reformatted_gn_args,
location=gn_args_location,
max_text_lines=gn_args_max_text_lines)
return gn_args
@_with_chromium_layout
def mb_gen(self, mastername, buildername, name=None,
mb_path=None, mb_config_path=None, use_goma=True,
isolated_targets=None, build_dir=None, phase=None,
android_version_code=None, android_version_name=None,
gn_args_location=None, gn_args_max_text_lines=None,
**kwargs):
"""Generate the build files in the source tree.
Args:
mastername: The name of the master for the build configuration to generate
build files for.
buildername: The name of the builder for the build configuration to
generate build files for.
name: The name of the step. If not provided 'generate_build_files' will be
used.
mb_path: The path to the source directory containing the mb.py script. If
not provided, the subdirectory tools/mb within the source tree will be
used.
mb_config_path: The path to the configuration file containing the master
and builder specifications to be used by mb. If not provided, the
project_generator.config_path config value will be used. If that is
falsey, then mb_config.pyl under the directory identified by mb_path
will be used.
gn_args_location: Controls where the GN args for the build should be
presented. By default or if gn.DEFAULT, the args will be in step_text if
the count of lines is less than gn_args_max_text_lines or the logs
otherwise. To force the presentation to the step_text or logs, use
gn.TEXT or gn.LOGS, respectively.
gn_args_max_text_lines: The maximum number of lines of GN args to display
in the step_text when using the default behavior for displaying GN args.
Returns:
The content of the args.gn file.
"""
# Get the GN args before running any other steps so that if any subsequent
# steps fail, developers will have the information about what the GN args
# are so that they can reproduce the issue locally
gn_args = self.mb_lookup(
mastername, buildername,
mb_path=mb_path, mb_config_path=mb_config_path,
phase=phase, use_goma=use_goma,
android_version_code=android_version_code,
android_version_name=android_version_name,
gn_args_location=gn_args_location,
gn_args_max_text_lines=gn_args_max_text_lines)
mb_args = []
mb_args.extend(self._mb_isolate_map_file_args())
if isolated_targets:
sorted_isolated_targets = sorted(set(isolated_targets))
# TODO(dpranke): Change the MB flag to '--isolate-targets-file', maybe?
data = '\n'.join(sorted_isolated_targets) + '\n'
mb_args += ['--swarming-targets-file', self.m.raw_io.input_text(data)]
mb_args.extend(self._mb_build_dir_args(build_dir))
name = name or 'generate_build_files'
result = self.run_mb_cmd(
name, 'gen', mastername, buildername,
mb_path=mb_path, mb_config_path=mb_config_path,
phase=phase, use_goma=use_goma,
android_version_code=android_version_code,
android_version_name=android_version_name,
additional_args=mb_args,
**kwargs)
if isolated_targets:
result.presentation.logs['swarming-targets-file.txt'] = (
sorted_isolated_targets)
return gn_args
@_with_chromium_layout
def mb_isolate_everything(self, mastername, buildername, use_goma=True,
mb_path=None, mb_config_path=None, name=None,
build_dir=None, android_version_code=None,
android_version_name=None, phase=None, **kwargs):
args = []
args.extend(self._mb_isolate_map_file_args())
args.extend(self._mb_build_dir_args(build_dir))
name = name or 'generate .isolate files'
self.run_mb_cmd(name, 'isolate-everything', mastername, buildername,
mb_path=mb_path, mb_config_path=mb_config_path,
phase=phase, use_goma=use_goma,
android_version_code=android_version_code,
android_version_name=android_version_name,
additional_args=args,
**kwargs)
def taskkill(self):
self.m.build.python(
'taskkill',
self.repo_resource('scripts', 'slave', 'kill_processes.py'),
infra_step=True)
def process_dumps(self, **kwargs):
# Dumps are especially useful when other steps (e.g. tests) are failing.
try:
self.m.build.python(
'process_dumps',
self.repo_resource('scripts', 'slave', 'process_dumps.py'),
['--target', self.c.build_config_fs],
infra_step=True,
**kwargs)
except self.m.step.InfraFailure:
pass
@_with_chromium_layout
def archive_build(self, step_name, gs_bucket, gs_acl=None, mode=None,
build_name=None, **kwargs):
"""Returns a step invoking archive_build.py to archive a Chromium build."""
if self.m.runtime.is_experimental:
gs_bucket += "/experimental"
# archive_build.py insists on inspecting factory properties. For now just
# provide these options in the format it expects.
fake_factory_properties = {
'gclient_env': self.c.gyp_env.as_jsonish(),
'gs_bucket': 'gs://%s' % gs_bucket,
}
if gs_acl is not None:
fake_factory_properties['gs_acl'] = gs_acl
if self.c.TARGET_PLATFORM:
fake_factory_properties['target_os'] = self.c.TARGET_PLATFORM
sanitized_buildername = ''.join(
c if c.isalnum() else '_' for c in self.m.properties['buildername'])
args = [
'--src-dir', self.m.path['checkout'],
'--build-name', build_name or sanitized_buildername,
'--staging-dir', self.m.path['cache'].join('chrome_staging'),
'--target', self.c.build_config_fs,
'--factory-properties', self.m.json.dumps(fake_factory_properties),
]
args += self.m.build.slave_utils_args
if self.build_properties:
args += [
'--build-properties', self.m.json.dumps(self.build_properties),
]
if mode:
args.extend(['--mode', mode])
self.m.build.python(
step_name,
self.repo_resource(
'scripts', 'slave', 'chromium', 'archive_build.py'),
args,
infra_step=True,
**kwargs)
def get_annotate_by_test_name(self, _):
return 'graphing'