blob: da15e21b2bad9a7d1a5e608df8e4b6e86cec8831 [file] [log] [blame]
# Copyright 2017 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.
from recipe_engine.recipe_api import Property
DEPS = [
'depot_tools/bot_update',
'depot_tools/gclient',
'recipe_engine/context',
'recipe_engine/path',
'recipe_engine/platform',
'recipe_engine/properties',
'recipe_engine/python',
'recipe_engine/step',
'trigger',
]
PROPERTIES = {
'revision': Property(help="SDK builder must be triggered with a revision"),
'buildername': Property(help="Should end in -[channel]"),
}
def BuildBuilderNames(name, channel, shards):
return ['%s-%s-%s-%s' % (name, i, shards, channel)
for i in range(1, shards + 1)]
def RunSteps(api, revision, buildername):
(_, _, channel) = buildername.rpartition('-')
assert channel in ['be', 'dev', 'stable']
# Step 1) Get the SDK checkout.
api.gclient.set_config('dart')
api.path.c.dynamic_paths['tools'] = None
api.bot_update.ensure_checkout()
api.path['tools'] = api.path['checkout'].join('tools')
with api.context(cwd=api.path['checkout']):
# Step 2) Run taskkill.
with api.step.defer_results():
api.python('taskkill before',
api.path['checkout'].join('tools', 'task_kill.py'),
args=[],
ok_ret='any')
# Step 3) Run gclient hooks.
api.gclient.runhooks()
# Step 4) We always do clean builds on the sdk builders.
api.python('clobber',
api.path['tools'].join('clean_output_directory.py'))
# Step 5) Build and upload the SDK
api.python('generate sdks',
api.path['checkout'].join('tools', 'bots', 'dart_sdk.py'),
args=[])
# Step 6) Run taskkill.
api.python('taskkill after',
api.path['checkout'].join('tools', 'task_kill.py'),
args=[],
ok_ret='any')
# Step 7) Trigger dependent builders.
if api.platform.name == 'win':
triggers = [{'builder_name': name,
'properties': { 'revision': revision }
} for name in BuildBuilderNames('dart2js-win7-ie11', channel, 4)]
api.trigger(*triggers)
# Step 8) Create and upload the API docs
api.python('generate API docs',
api.path['checkout'].join('tools', 'bots', 'dart_sdk.py'),
args=['api_docs'])
def GenTests(api):
yield (
api.test('dart-sdk-linux-be') + api.platform('linux', 64) +
api.properties.generic(mastername='client.dart',
buildername='dart-sdk-linux-be',
revision='a' * 40))
yield (
api.test('dart-sdk-windows-dev') + api.platform('win', 32) +
api.properties.generic(mastername='client.dart',
buildername='dart-sdk-windows-dev',
revision='a' * 40))
yield (
api.test('dart-sdk-mac-stable') + api.platform('mac', 64) +
api.properties.generic(mastername='client.dart',
buildername='dart-sdk-mac-stable',
revision='a' * 40))