2b1d179860
It will upload to a directory that specifies the day the SKPs were created on: gs://chrome-partner-telemetry/skps/2019-02-05 Bug: skia:8738 Change-Id: Ic6b719770e16408d580e552af41c1a41c682935a Reviewed-on: https://skia-review.googlesource.com/c/188300 Reviewed-by: Ben Wagner <benjaminwagner@google.com> Commit-Queue: Ravi Mistry <rmistry@google.com>
127 lines
3.9 KiB
Python
127 lines
3.9 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 RecreateSKPs Bot."""
|
|
|
|
|
|
DEPS = [
|
|
'checkout',
|
|
'depot_tools/gclient',
|
|
'flavor',
|
|
'infra',
|
|
'recipe_engine/context',
|
|
'recipe_engine/file',
|
|
'recipe_engine/path',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/raw_io',
|
|
'recipe_engine/step',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
|
|
TEST_BUILDERS = {
|
|
'client.skia.compile': {
|
|
'skiabot-linux-swarm-000': [
|
|
'Housekeeper-Nightly-RecreateSKPs_Canary',
|
|
'Housekeeper-Weekly-RecreateSKPs',
|
|
],
|
|
},
|
|
}
|
|
|
|
|
|
def RunSteps(api):
|
|
# Check out Chrome.
|
|
api.vars.setup()
|
|
|
|
checkout_root = api.checkout.default_checkout_root
|
|
extra_gclient_env = {
|
|
'CPPFLAGS': '-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1'}
|
|
api.checkout.bot_update(
|
|
checkout_root=checkout_root,
|
|
checkout_chromium=True,
|
|
extra_gclient_env=extra_gclient_env)
|
|
|
|
api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
|
|
api.flavor.setup()
|
|
|
|
src_dir = checkout_root.join('src')
|
|
skia_dir = checkout_root.join('skia')
|
|
out_dir = src_dir.join('out', 'Release')
|
|
|
|
with api.context(cwd=src_dir):
|
|
# Call GN.
|
|
platform = 'linux64' # This bot only runs on linux; don't bother checking.
|
|
gn = src_dir.join('buildtools', platform, 'gn')
|
|
gn_env = {'CPPFLAGS': '-DSK_ALLOW_CROSSPROCESS_PICTUREIMAGEFILTERS=1',
|
|
'GYP_GENERATORS': 'ninja'}
|
|
with api.context(env=gn_env):
|
|
api.run(api.step, 'GN', cmd=[gn, 'gen', out_dir])
|
|
|
|
# Build Chrome.
|
|
api.run(api.step, 'Build Chrome', cmd=['ninja', '-C', out_dir, 'chrome'])
|
|
|
|
# Clean up the output dir.
|
|
output_dir = api.path['start_dir'].join('skp_output')
|
|
if api.path.exists(output_dir):
|
|
api.run.rmtree(output_dir)
|
|
api.file.ensure_directory('makedirs skp_output', output_dir)
|
|
|
|
# Capture the SKPs.
|
|
asset_dir = skia_dir.join('infra', 'bots', 'assets', 'skp')
|
|
cmd = ['python', asset_dir.join('create.py'),
|
|
'--chrome_src_path', src_dir,
|
|
'--browser_executable', src_dir.join('out', 'Release', 'chrome'),
|
|
'--target_dir', output_dir]
|
|
if 'Canary' not in api.properties['buildername']:
|
|
cmd.append('--upload_to_partner_bucket')
|
|
with api.context(cwd=skia_dir):
|
|
api.run(api.step, 'Recreate SKPs', cmd=cmd)
|
|
|
|
# Upload the SKPs.
|
|
if 'Canary' not in api.properties['buildername']:
|
|
cmd = ['python',
|
|
skia_dir.join('infra', 'bots', 'upload_skps.py'),
|
|
'--target_dir', output_dir,
|
|
'--chromium_path', src_dir]
|
|
with api.context(cwd=skia_dir, env=api.infra.go_env):
|
|
api.run(api.step, 'Upload SKPs', cmd=cmd)
|
|
|
|
|
|
def GenTests(api):
|
|
builder = 'Housekeeper-Nightly-RecreateSKPs_Canary'
|
|
yield (
|
|
api.test(builder) +
|
|
api.properties(buildername=builder,
|
|
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'].join('skp_output'))
|
|
)
|
|
|
|
builder = 'Housekeeper-Weekly-RecreateSKPs'
|
|
yield (
|
|
api.test(builder) +
|
|
api.properties(buildername=builder,
|
|
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'].join('skp_output'))
|
|
)
|
|
|
|
yield (
|
|
api.test('failed_upload') +
|
|
api.properties(buildername=builder,
|
|
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'].join('skp_output')) +
|
|
api.step_data('Upload SKPs', retcode=1)
|
|
)
|