dart-sdk/tools/bots/bot.py
Robert Nystrom e919e89d0b Add an "--nnbd" flag to build.py.
This treats whether or not to use the forked NNBD SDK as a build flag
similar to mode or architecture. When this flag is passed, it appends
"NNBD" to the main output directory, like xcodebuild/ReleaseX64NNBD.

It also defines a "use_nnbd" flag that is available inside BUILD.gn
files to determine whether or not to use the forked SDK. This flag
currently isn't used. Implementation teams will need to edit their
build steps to take that into account.

In order to use this mode on the bots, we'll need to tweak the bot
scripts to figure out whether the mode is enabled or not. There are a
couple of TODOs in the Python scripts for that. I'm not sure how that
should be specified in dart_sdk.py.

This CL does not remove my previous change to allow building the NNBD
fork next to dart-sdk in the same root output directory. I'll revert
those changes in a different CL once this one lands.

Change-Id: I3bd28f273106ee90caf9474b2fadad120b2c2d0b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/119602
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
2019-10-03 00:11:32 +00:00

326 lines
9.8 KiB
Python

#!/usr/bin/python
# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
"""
Shared code for use in the buildbot scripts.
"""
import optparse
import os
from os.path import abspath
from os.path import dirname
import subprocess
import sys
import bot_utils
utils = bot_utils.GetUtils()
BUILD_OS = utils.GuessOS()
BUILDER_NAME = 'BUILDBOT_BUILDERNAME'
BUILDER_CLOBBER = 'BUILDBOT_CLOBBER'
class BuildInfo(object):
"""
Encapsulation of build information.
- compiler: None or 'dart2js'
- runtime: 'd8', 'ie', 'ff', 'safari', 'chrome', 'opera', or None.
- mode: 'debug' or 'release'.
- system: 'linux', 'mac', or 'win7'.
- checked: True if we should run in checked mode, otherwise False.
- host_checked: True if we should run in host checked mode, otherwise False.
- minified: True if we should minify the code, otherwise False
- shard_index: The shard we are running, None when not specified.
- total_shards: The total number of shards, None when not specified.
- is_buildbot: True if we are on a buildbot (or emulating it).
- test_set: Specification of a non standard test set or None.
- csp: This is using csp when running
- arch: The architecture to build on.
- dart2js_full: Boolean indicating whether this builder will run dart2js
on several different runtimes.
- builder_tag: A tag indicating a special builder setup.
- cps_ir: Run the compiler with the cps based backend
- use_nnbd: Whether to use the NNBD fork of the SDK.
"""
# TODO: Remove use_nnbd when the fork is merged back in.
def __init__(self,
compiler,
runtime,
mode,
system,
checked=False,
host_checked=False,
minified=False,
shard_index=None,
total_shards=None,
is_buildbot=False,
test_set=None,
csp=None,
arch=None,
dart2js_full=False,
builder_tag=None,
batch=False,
cps_ir=False,
use_nnbd=False):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
self.system = system
self.checked = checked
self.host_checked = host_checked
self.minified = minified
self.shard_index = shard_index
self.total_shards = total_shards
self.is_buildbot = is_buildbot
self.test_set = test_set
self.csp = csp
self.dart2js_full = dart2js_full
self.builder_tag = builder_tag
self.batch = batch
self.cps_ir = cps_ir
self.use_nnbd = use_nnbd
if (arch == None):
self.arch = 'ia32'
else:
self.arch = arch
def PrintBuildInfo(self):
shard_description = ""
if self.shard_index:
shard_description = " shard %s of %s" % (self.shard_index,
self.total_shards)
print("compiler: %s, runtime: %s mode: %s, system: %s,"
" checked: %s, host-checked: %s, minified: %s, test-set: %s"
" arch: %s%s") % (self.compiler, self.runtime, self.mode,
self.system, self.checked, self.host_checked,
self.minified, self.test_set, self.arch,
shard_description)
class BuildStep(object):
"""
A context manager for handling build steps.
When the context manager is entered, it prints the "@@@BUILD_STEP __@@@"
message. If it exits from an error being raised it displays the
"@@@STEP_FAILURE@@@" message.
If swallow_error is True, then this will catch and discard any OSError that
is thrown. This lets you run later BuildSteps if the current one fails.
"""
def __init__(self, name, swallow_error=False):
self.name = name
self.swallow_error = swallow_error
def __enter__(self):
print '@@@BUILD_STEP %s@@@' % self.name
sys.stdout.flush()
def __exit__(self, type, value, traceback):
if value:
print '@@@STEP_FAILURE@@@'
sys.stdout.flush()
if self.swallow_error and isinstance(value, OSError):
return True
def BuildSDK(build_info):
"""
Builds the SDK.
- build_info: the buildInfo object, containing information about what sort of
build and test to be run.
"""
with BuildStep('Build SDK'):
args = [
sys.executable, './tools/build.py', '--mode=' + build_info.mode,
'--arch=' + build_info.arch, 'create_sdk'
]
print 'Building SDK: %s' % (' '.join(args))
RunProcess(args)
def RunBot(parse_name, custom_steps, build_step=BuildSDK):
"""
The main function for running a buildbot.
A buildbot script should invoke this once. The parse_name function will be
called with the name of the buildbot and should return an instance of
BuildInfo. This function will then set up the bot, build the SDK etc. When
that's done, it will call custom_steps, passing in the BuildInfo object.
In that, you can perform any bot-specific build steps.
This function will not return. It will call sys.exit() with an appropriate
exit code.
"""
if len(sys.argv) == 0:
print 'Script pathname not known, giving up.'
sys.exit(1)
name, is_buildbot = GetBotName()
build_info = parse_name(name, is_buildbot)
if not build_info:
print 'Could not handle unfamiliar bot name "%s".' % name
sys.exit(1)
# Print out the buildinfo for easy debugging.
build_info.PrintBuildInfo()
# Make sure we are in the dart directory
os.chdir(bot_utils.DART_DIR)
try:
Clobber()
if build_step:
build_step(build_info)
custom_steps(build_info)
except OSError as e:
sys.exit(e.errno)
sys.exit(0)
def GetBotName():
"""
Gets the name of the current buildbot.
Returns a tuple of the buildbot name and a flag to indicate if we are actually
a buildbot (True), or just a user pretending to be one (False).
"""
# For testing the bot locally, allow the user to pass in a buildbot name.
parser = optparse.OptionParser()
parser.add_option(
'-n',
'--name',
dest='name',
help='The name of the build'
'bot you would like to emulate (ex: vm-mac-debug)',
default=None)
args, _ = parser.parse_args()
if args.name:
return args.name, False
name = os.environ.get(BUILDER_NAME)
if not name:
print 'Use -n $BUILDBOT_NAME for the bot you would like to emulate.'
sys.exit(1)
return name, True
def Clobber(force=None):
"""
Clobbers the builder before we do the build, if appropriate.
- mode: either 'debug' or 'release'
"""
if os.environ.get(BUILDER_CLOBBER) != "1" and not force:
return
clobber_string = 'Clobber'
if force:
clobber_string = 'Clobber(always)'
with BuildStep(clobber_string):
cmd = [sys.executable, './tools/clean_output_directory.py']
print 'Clobbering %s' % (' '.join(cmd))
RunProcess(cmd)
def RunTest(name, build_info, targets, flags=None, swallow_error=False):
"""
Runs test.py with the given settings.
"""
if not flags:
flags = []
step_name = GetStepName(name, flags)
with BuildStep(step_name, swallow_error=swallow_error):
sys.stdout.flush()
cmd = [
sys.executable,
os.path.join(os.curdir, 'tools',
'test.py'), '--step_name=' + step_name,
'--mode=' + build_info.mode, '--compiler=' + build_info.compiler,
'--runtime=' + build_info.runtime, '--arch=' + build_info.arch,
'--progress=buildbot', '--write-result-log', '-v', '--time',
'--use-sdk', '--report'
]
if build_info.checked:
cmd.append('--checked')
cmd.extend(flags)
cmd.extend(targets)
print 'Running: %s' % (' '.join(map(lambda arg: '"%s"' % arg, cmd)))
sys.stdout.flush()
RunProcess(cmd)
def RunTestRunner(build_info, path):
"""
Runs the test package's runner on the package at 'path'.
"""
# TODO(38701): Once bots are set up to run NNBD configurations, update
# the various name parsing functions to detect that and pass "use_nnbd" to
# the BuildInfo() constructor.
sdk_bin = os.path.join(
bot_utils.DART_DIR,
utils.GetBuildSdkBin(BUILD_OS, build_info.mode, build_info.arch,
build_info.use_nnbd))
build_root = utils.GetBuildRoot(
BUILD_OS,
build_info.mode,
build_info.arch,
use_nnbd=build_info.use_nnbd)
dart_name = 'dart.exe' if build_info.system == 'windows' else 'dart'
dart_bin = os.path.join(sdk_bin, dart_name)
test_bin = os.path.abspath(
os.path.join('third_party', 'pkg', 'test', 'bin', 'test.dart'))
with utils.ChangedWorkingDirectory(path):
args = [dart_bin, test_bin, '--reporter', 'expanded', '--no-color']
print("Running %s" % ' '.join(args))
RunProcess(args)
def RunProcess(command, env=None):
"""
Runs command.
If a non-zero exit code is returned, raises an OSError with errno as the exit
code.
"""
if env is None:
no_color_env = dict(os.environ)
else:
no_color_env = env
no_color_env['TERM'] = 'nocolor'
exit_code = subprocess.call(command, env=no_color_env)
if exit_code != 0:
raise OSError(exit_code)
def GetStepName(name, flags):
"""
Filters out flags with '=' as this breaks the /stats feature of the buildbot.
"""
flags = [x for x in flags if not '=' in x]
return ('%s tests %s' % (name, ' '.join(flags))).strip()