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 = [
|
2016-08-03 15:23:10 +00:00
|
|
|
'core',
|
2016-07-26 18:52:17 +00:00
|
|
|
'recipe_engine/path',
|
|
|
|
'recipe_engine/properties',
|
|
|
|
'recipe_engine/python',
|
|
|
|
'recipe_engine/step',
|
2016-08-03 15:23:10 +00:00
|
|
|
'run',
|
|
|
|
'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']
|
|
|
|
|
2016-08-03 15:23:10 +00:00
|
|
|
api.run(
|
2016-07-26 18:52:17 +00:00
|
|
|
api.step,
|
|
|
|
'android platform self-tests',
|
|
|
|
cmd=['python',
|
|
|
|
cwd.join('platform_tools', 'android', 'tests', 'run_all.py')],
|
|
|
|
cwd=cwd,
|
|
|
|
abort_on_failure=False)
|
|
|
|
|
|
|
|
# TODO(borenet): Detect static initializers?
|
|
|
|
|
|
|
|
gsutil_path = api.path['depot_tools'].join('third_party', 'gsutil',
|
|
|
|
'gsutil')
|
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-08-03 15:23:10 +00:00
|
|
|
cmd=['python', api.core.resource('generate_and_upload_doxygen.py'),
|
2016-07-26 18:52:17 +00:00
|
|
|
gsutil_path],
|
|
|
|
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:
|
|
|
|
cmd.extend(['--issue_number', str(api.properties['issue'])])
|
|
|
|
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)
|
|
|
|
|
|
|
|
def GenTests(api):
|
|
|
|
for mastername, slaves in TEST_BUILDERS.iteritems():
|
|
|
|
for slavename, builders_by_slave in slaves.iteritems():
|
|
|
|
for buildername in builders_by_slave:
|
|
|
|
test = (
|
|
|
|
api.test(buildername) +
|
|
|
|
api.properties(buildername=buildername,
|
|
|
|
mastername=mastername,
|
|
|
|
slavename=slavename,
|
|
|
|
buildnumber=5,
|
|
|
|
revision='abc123',
|
|
|
|
path_config='kitchen',
|
|
|
|
swarm_out_dir='[SWARM_OUT_DIR]') +
|
|
|
|
api.path.exists(api.path['slave_build'])
|
|
|
|
)
|
|
|
|
if 'Trybot' in buildername:
|
|
|
|
test.properties['issue'] = '500'
|
2016-08-03 15:23:10 +00:00
|
|
|
test.properties['patchset'] = '1'
|
|
|
|
test.properties['rietveld'] = 'https://codereview.chromium.org'
|
2016-07-26 18:52:17 +00:00
|
|
|
yield test
|