2016-07-26 18:52:17 +00:00
|
|
|
# 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 = [
|
|
|
|
'recipe_engine/path',
|
|
|
|
'recipe_engine/properties',
|
|
|
|
'recipe_engine/python',
|
|
|
|
'recipe_engine/step',
|
2017-01-13 18:37:53 +00:00
|
|
|
'skia-recipes/core',
|
|
|
|
'skia-recipes/run',
|
|
|
|
'skia-recipes/vars',
|
2016-07-26 18:52:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
TEST_BUILDERS = {
|
|
|
|
'client.skia.fyi': {
|
|
|
|
'skiabot-linux-housekeeper-000': [
|
|
|
|
'Housekeeper-PerCommit',
|
|
|
|
'Housekeeper-PerCommit-Trybot',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def RunSteps(api):
|
|
|
|
# Checkout, compile, etc.
|
2016-08-03 15:23:10 +00:00
|
|
|
api.core.setup()
|
2016-07-26 18:52:17 +00:00
|
|
|
|
|
|
|
cwd = api.path['checkout']
|
|
|
|
|
|
|
|
# TODO(borenet): Detect static initializers?
|
|
|
|
|
2016-09-20 20:32:37 +00:00
|
|
|
gsutil_path = api.path['depot_tools'].join('gsutil.py')
|
2016-08-03 15:23:10 +00:00
|
|
|
if not api.vars.is_trybot:
|
|
|
|
api.run(
|
2016-07-26 18:52:17 +00:00
|
|
|
api.step,
|
|
|
|
'generate and upload doxygen',
|
2016-10-04 20:23:57 +00:00
|
|
|
cmd=['python', api.core.resource('generate_and_upload_doxygen.py')],
|
2016-07-26 18:52:17 +00:00
|
|
|
cwd=cwd,
|
|
|
|
abort_on_failure=False)
|
|
|
|
|
2016-08-03 15:23:10 +00:00
|
|
|
cmd = ['python', api.core.resource('run_binary_size_analysis.py'),
|
|
|
|
'--library', api.vars.skia_out.join(
|
|
|
|
'Release', 'lib', 'libskia.so'),
|
2016-07-26 18:52:17 +00:00
|
|
|
'--githash', api.properties['revision'],
|
|
|
|
'--gsutil_path', gsutil_path]
|
2016-08-03 15:23:10 +00:00
|
|
|
if api.vars.is_trybot:
|
2016-12-02 16:01:33 +00:00
|
|
|
cmd.extend(['--issue_number', str(api.properties['patch_issue'])])
|
2016-08-03 15:23:10 +00:00
|
|
|
api.run(
|
2016-07-26 18:52:17 +00:00
|
|
|
api.step,
|
|
|
|
'generate and upload binary size data',
|
|
|
|
cmd=cmd,
|
|
|
|
cwd=cwd,
|
|
|
|
abort_on_failure=False)
|
|
|
|
|
2016-08-12 15:50:29 +00:00
|
|
|
env = {}
|
|
|
|
env['GOPATH'] = api.vars.tmp_dir.join('golib')
|
|
|
|
extractexe = env['GOPATH'].join('bin', 'extract_comments')
|
|
|
|
goexe = api.vars.slave_dir.join('go', 'go', 'bin', 'go')
|
|
|
|
|
|
|
|
# Compile extract_comments.
|
|
|
|
api.run(
|
|
|
|
api.step,
|
|
|
|
'compile extract_comments',
|
|
|
|
cmd=[goexe, 'get', 'go.skia.org/infra/comments/go/extract_comments'],
|
|
|
|
cwd=cwd,
|
|
|
|
env=env,
|
|
|
|
abort_on_failure=True)
|
|
|
|
|
|
|
|
# Run extract_comments on the gm directory.
|
|
|
|
api.run(
|
|
|
|
api.step,
|
|
|
|
'run extract_comments',
|
|
|
|
cmd=[extractexe, '--dir', 'gm', '--dest', 'gs://skia-doc/gm/comments.json'],
|
|
|
|
cwd=cwd,
|
|
|
|
env=env,
|
|
|
|
abort_on_failure=True)
|
|
|
|
|
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
def GenTests(api):
|
2016-12-02 16:01:33 +00:00
|
|
|
yield (
|
|
|
|
api.test('Housekeeper-PerCommit') +
|
|
|
|
api.properties(buildername='Housekeeper-PerCommit',
|
|
|
|
mastername='client.skia.fyi',
|
|
|
|
slavename='skiabot-linux-housekeeper-000',
|
|
|
|
buildnumber=5,
|
2017-01-17 19:35:06 +00:00
|
|
|
repository='https://skia.googlesource.com/skia.git',
|
2016-12-02 16:01:33 +00:00
|
|
|
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',
|
|
|
|
mastername='client.skia.fyi',
|
|
|
|
slavename='skiabot-linux-housekeeper-000',
|
|
|
|
buildnumber=5,
|
2017-01-17 19:35:06 +00:00
|
|
|
repository='https://skia.googlesource.com/skia.git',
|
2016-12-02 16:01:33 +00:00
|
|
|
revision='abc123',
|
|
|
|
path_config='kitchen',
|
|
|
|
patch_storage='gerrit',
|
|
|
|
nobuildbot='True',
|
|
|
|
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'])
|
|
|
|
)
|