9c2b7cfe90
1) some flags that "The Internet" says may help 2) retry running the test script up to 3 times. I wasn't able to reproduce the crashes with a non-Docker Chrome, only in the Docker container, which was very hard to debug. Change-Id: I87f31c32f63b2770d8d5afa6a8e4b90c35dbf0bb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/255820 Reviewed-by: Eric Boren <borenet@google.com> Reviewed-by: Leandro Lovisolo <lovisolo@google.com>
99 lines
3.2 KiB
Python
99 lines
3.2 KiB
Python
# Copyright 2018 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 which runs the Canvaskit tests using docker
|
|
|
|
DEPS = [
|
|
'checkout',
|
|
'docker',
|
|
'env',
|
|
'infra',
|
|
'recipe_engine/file',
|
|
'recipe_engine/path',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/step',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
|
|
DOCKER_IMAGE = 'gcr.io/skia-public/perf-karma-chrome-tests:77.0.3865.120_v1'
|
|
INNER_KARMA_SCRIPT = 'skia/infra/canvaskit/perf_canvaskit.sh'
|
|
|
|
|
|
def RunSteps(api):
|
|
api.vars.setup()
|
|
checkout_root = api.path['start_dir']
|
|
out_dir = api.vars.swarming_out_dir
|
|
|
|
# The karma script is configured to look in ./canvaskit/bin/ for
|
|
# the test files to load, so we must copy them there (see Set up for docker).
|
|
copy_dest = checkout_root.join('skia', 'modules', 'canvaskit',
|
|
'canvaskit', 'bin')
|
|
base_dir = api.vars.build_dir
|
|
copies = {
|
|
base_dir.join('canvaskit.js'): copy_dest.join('canvaskit.js'),
|
|
base_dir.join('canvaskit.wasm'): copy_dest.join('canvaskit.wasm'),
|
|
}
|
|
recursive_read = [checkout_root.join('skia')]
|
|
|
|
args = [
|
|
'--builder', api.vars.builder_name,
|
|
'--git_hash', api.properties['revision'],
|
|
'--buildbucket_build_id', api.properties.get('buildbucket_build_id', ''),
|
|
'--bot_id', api.vars.swarming_bot_id,
|
|
'--task_id', api.vars.swarming_task_id,
|
|
'--browser', 'Chrome',
|
|
'--config', api.vars.configuration,
|
|
'--source_type', 'canvaskit',
|
|
]
|
|
if api.vars.is_trybot:
|
|
args.extend([
|
|
'--issue', api.vars.issue,
|
|
'--patchset', api.vars.patchset,
|
|
])
|
|
|
|
api.docker.run(
|
|
name='Performance tests of CanvasKit with Docker',
|
|
docker_image=DOCKER_IMAGE,
|
|
src_dir=checkout_root,
|
|
out_dir=out_dir,
|
|
script=checkout_root.join(INNER_KARMA_SCRIPT),
|
|
args=args,
|
|
docker_args=None,
|
|
copies=copies,
|
|
recursive_read=recursive_read,
|
|
attempts=3,
|
|
)
|
|
|
|
|
|
def GenTests(api):
|
|
yield (
|
|
api.test('Perf-Debian9-EMCC-GCE-CPU-AVX2-wasm-Release-All-CanvasKit') +
|
|
api.properties(buildername=('Perf-Debian9-EMCC-GCE-CPU-AVX2'
|
|
'-wasm-Release-All-CanvasKit'),
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]')
|
|
)
|
|
|
|
yield (
|
|
api.test('pathkit_trybot') +
|
|
api.properties(buildername=('Perf-Debian9-EMCC-GCE-GPU-AVX2'
|
|
'-wasm-Release-All-CanvasKit'),
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
patch_ref='89/456789/12',
|
|
patch_repo='https://skia.googlesource.com/skia.git',
|
|
patch_storage='gerrit',
|
|
patch_set=7,
|
|
patch_issue=1234,
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/')
|
|
)
|