6c4c685b2b
Also update some recipe expectations to use job names that currently exist. Bug: skia:9632 Change-Id: I35883474a91ffb9fb2ab3b16089c7c80b5df0bd6 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/255982 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Ben Wagner aka dogben <benjaminwagner@google.com>
106 lines
3.7 KiB
Python
106 lines
3.7 KiB
Python
# Copyright 2017 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.
|
|
|
|
|
|
DEPS = [
|
|
'build',
|
|
'recipe_engine/path',
|
|
'recipe_engine/platform',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/raw_io',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.vars.setup()
|
|
checkout_root = api.vars.cache_dir.join('work')
|
|
out_dir = checkout_root.join(
|
|
'skia', 'out', api.vars.builder_name, api.vars.configuration)
|
|
api.build(checkout_root=checkout_root, out_dir=out_dir)
|
|
dst = api.vars.swarming_out_dir.join('out', api.vars.configuration)
|
|
api.build.copy_build_products(out_dir=out_dir, dst=dst)
|
|
api.run.check_failure()
|
|
|
|
|
|
TEST_BUILDERS = [
|
|
'Build-Debian10-GCC-loongson3a-Release-Docker',
|
|
'Build-Debian10-GCC-x86-Debug-Docker',
|
|
'Build-Debian10-GCC-x86_64-Debug-Docker',
|
|
'Build-Debian10-GCC-x86_64-Release-NoGPU_Docker',
|
|
'Build-Debian10-GCC-x86_64-Release-Shared_Docker',
|
|
'Build-Debian9-Clang-arm-Release-Android_API26',
|
|
'Build-Debian9-Clang-arm-Release-Android_ASAN',
|
|
'Build-Debian9-Clang-arm-Release-Chromebook_GLES',
|
|
'Build-Debian9-Clang-arm-Release-Chromecast',
|
|
'Build-Debian9-Clang-arm-Release-Flutter_Android',
|
|
'Build-Debian9-Clang-arm64-Release-Android_Wuffs',
|
|
'Build-Debian9-Clang-x86-devrel-Android_SKQP',
|
|
'Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES',
|
|
'Build-Debian9-Clang-x86_64-Debug-Coverage',
|
|
'Build-Debian9-Clang-x86_64-Debug-MSAN',
|
|
'Build-Debian9-Clang-x86_64-Debug-OpenCL',
|
|
'Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41',
|
|
'Build-Debian9-Clang-x86_64-Debug-SafeStack',
|
|
'Build-Debian9-Clang-x86_64-Debug-SwiftShader_MSAN',
|
|
'Build-Debian9-Clang-x86_64-Debug-Tidy',
|
|
'Build-Debian9-Clang-x86_64-Debug-Wuffs',
|
|
'Build-Debian9-Clang-x86_64-Release-ANGLE',
|
|
'Build-Debian9-Clang-x86_64-Release-ASAN',
|
|
'Build-Debian9-Clang-x86_64-Release-CMake',
|
|
'Build-Debian9-Clang-x86_64-Release-Fast',
|
|
'Build-Debian9-Clang-x86_64-Release-NoDEPS',
|
|
'Build-Debian9-Clang-x86_64-Release-Static',
|
|
'Build-Debian9-Clang-x86_64-Release-SwiftShader',
|
|
'Build-Debian9-Clang-x86_64-Release-Vulkan',
|
|
'Build-Debian9-EMCC-asmjs-Debug-PathKit',
|
|
'Build-Debian9-EMCC-asmjs-Release-PathKit',
|
|
'Build-Debian9-EMCC-wasm-Debug-CanvasKit',
|
|
'Build-Debian9-EMCC-wasm-Debug-PathKit',
|
|
'Build-Debian9-EMCC-wasm-Release-CanvasKit_CPU',
|
|
'Build-Debian9-EMCC-wasm-Release-PathKit',
|
|
'Build-Mac-Clang-arm-Debug-iOS',
|
|
'Build-Mac-Clang-arm64-Debug-Android_Vulkan',
|
|
'Build-Mac-Clang-arm64-Debug-iOS',
|
|
'Build-Mac-Clang-x86_64-Debug-ASAN',
|
|
'Build-Mac-Clang-x86_64-Debug-CommandBuffer',
|
|
'Build-Mac-Clang-x86_64-Debug-Metal',
|
|
'Build-Mac-Clang-x86_64-Release-MoltenVK_Vulkan',
|
|
'Build-Win-Clang-arm64-Release-Android',
|
|
'Build-Win-Clang-x86-Debug-Exceptions',
|
|
'Build-Win-Clang-x86_64-Debug-ANGLE',
|
|
'Build-Win-Clang-x86_64-Debug-OpenCL',
|
|
'Build-Win-Clang-x86_64-Release-Shared',
|
|
'Build-Win-Clang-x86_64-Release-Vulkan',
|
|
'Test-Debian9-Clang-GCE-CPU-AVX2-universal-devrel-All-Android_SKQP',
|
|
'Housekeeper-PerCommit-CheckGeneratedFiles',
|
|
]
|
|
|
|
# Default properties used for TEST_BUILDERS.
|
|
defaultProps = lambda buildername: dict(
|
|
buildername=buildername,
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
path_config='kitchen',
|
|
patch_set=2,
|
|
swarm_out_dir='[SWARM_OUT_DIR]'
|
|
)
|
|
|
|
def GenTests(api):
|
|
for buildername in TEST_BUILDERS:
|
|
test = (
|
|
api.test(buildername) +
|
|
api.properties(**defaultProps(buildername))
|
|
)
|
|
if 'Win' in buildername and not 'LenovoYogaC630' in buildername:
|
|
test += api.platform('win', 64)
|
|
yield test
|
|
|
|
yield (
|
|
api.test('unknown-docker-image') +
|
|
api.properties(**defaultProps('Build-Unix-GCC-x86_64-Release-Docker')) +
|
|
api.expect_exception('Exception')
|
|
)
|