68a58ea755
Bug: skia:6473 Change-Id: I722059844bb0bc9d58347b4f6002ee62043b9e20 Reviewed-on: https://skia-review.googlesource.com/13006 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Eric Boren <borenet@google.com>
86 lines
2.4 KiB
Python
86 lines
2.4 KiB
Python
# Copyright 2014 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.
|
|
|
|
|
|
# Recipe for the Skia PerCommit Housekeeper.
|
|
|
|
DEPS = [
|
|
'depot_tools/bot_update',
|
|
'recipe_engine/path',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/step',
|
|
'core',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
|
|
TEST_BUILDERS = {
|
|
'client.skia.fyi': {
|
|
'skiabot-linux-housekeeper-000': [
|
|
'Housekeeper-PerCommit',
|
|
'Housekeeper-PerCommit-Trybot',
|
|
],
|
|
},
|
|
}
|
|
|
|
|
|
def RunSteps(api):
|
|
# Checkout, compile, etc.
|
|
api.core.setup()
|
|
|
|
cwd = api.path['checkout']
|
|
|
|
# TODO(borenet): Detect static initializers?
|
|
|
|
with api.step.context({'cwd': cwd}):
|
|
gsutil_path = api.bot_update._module.PACKAGE_REPO_ROOT.join('gsutil.py')
|
|
if not api.vars.is_trybot:
|
|
api.run(
|
|
api.step,
|
|
'generate and upload doxygen',
|
|
cmd=['python', api.core.resource('generate_and_upload_doxygen.py')],
|
|
abort_on_failure=False)
|
|
|
|
cmd = ['python', api.core.resource('run_binary_size_analysis.py'),
|
|
'--library', api.vars.skia_out.join(
|
|
'Release', 'lib', 'libskia.so'),
|
|
'--githash', api.properties['revision'],
|
|
'--gsutil_path', gsutil_path]
|
|
if api.vars.is_trybot:
|
|
cmd.extend(['--issue_number', str(api.properties['patch_issue'])])
|
|
api.run(
|
|
api.step,
|
|
'generate and upload binary size data',
|
|
cmd=cmd,
|
|
abort_on_failure=False)
|
|
|
|
|
|
def GenTests(api):
|
|
yield (
|
|
api.test('Housekeeper-PerCommit') +
|
|
api.properties(buildername='Housekeeper-PerCommit',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]') +
|
|
api.path.exists(api.path['start_dir'])
|
|
)
|
|
yield (
|
|
api.test('Housekeeper-PerCommit-Trybot') +
|
|
api.properties(buildername='Housekeeper-PerCommit',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
path_config='kitchen',
|
|
patch_storage='gerrit',
|
|
swarm_out_dir='[SWARM_OUT_DIR]') +
|
|
api.properties.tryserver(
|
|
buildername='Housekeeper-PerCommit',
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/',
|
|
) +
|
|
api.path.exists(api.path['start_dir'])
|
|
)
|