69c1ce1d40
Followup from https://skia-review.googlesource.com/c/skia/+/228556 Change-Id: Iee0d2c7e095dd9e918c6801f2b3692d829f8557a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/228566 Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com> Commit-Queue: Eric Boren <borenet@google.com>
76 lines
1.8 KiB
Python
76 lines
1.8 KiB
Python
# Copyright 2016 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 module for Skia Swarming compile.
|
|
|
|
|
|
DEPS = [
|
|
'build',
|
|
'checkout',
|
|
'recipe_engine/context',
|
|
'recipe_engine/file',
|
|
'recipe_engine/json',
|
|
'recipe_engine/path',
|
|
'recipe_engine/platform',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/step',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.vars.setup()
|
|
|
|
checkout_root = api.path['start_dir']
|
|
out_dir = api.vars.cache_dir.join(
|
|
'work', 'skia', 'out', api.vars.builder_name, api.vars.configuration)
|
|
|
|
try:
|
|
api.build(checkout_root=checkout_root, out_dir=out_dir)
|
|
|
|
# TODO(borenet): Move this out of the try/finally.
|
|
dst = api.vars.swarming_out_dir
|
|
api.build.copy_build_products(out_dir=out_dir, dst=dst)
|
|
finally:
|
|
if 'Win' in api.vars.builder_cfg.get('os', ''):
|
|
api.python.inline(
|
|
name='cleanup',
|
|
program='''import psutil
|
|
for p in psutil.process_iter():
|
|
try:
|
|
if p.name in ('mspdbsrv.exe', 'vctip.exe', 'cl.exe', 'link.exe'):
|
|
p.kill()
|
|
except psutil._error.AccessDenied:
|
|
pass
|
|
''',
|
|
infra_step=True)
|
|
|
|
api.run.check_failure()
|
|
|
|
|
|
TEST_BUILDERS = [
|
|
'Build-Win-Clang-x86-Debug',
|
|
]
|
|
|
|
|
|
def GenTests(api):
|
|
for builder in TEST_BUILDERS:
|
|
test = (
|
|
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('tmp', 'uninteresting_hashes.txt')
|
|
)
|
|
)
|
|
if 'Win' in builder:
|
|
test += api.platform('win', 64)
|
|
yield test
|