mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 10:10:41 +00:00
e487d4a56c
This lets us see the list of tests that ran and matches the Linux results more closely. BUG=None TEST=cd infra && ./recipes.py test run Change-Id: I880cd397e21d487fb9f1924fbb1fc8e2ff3cc29a Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3764467 Tested-by: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
# Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
from recipe_engine.post_process import Filter
|
|
|
|
PYTHON_VERSION_COMPATIBILITY = "PY3"
|
|
|
|
DEPS = [
|
|
"crosvm",
|
|
"recipe_engine/buildbucket",
|
|
"recipe_engine/context",
|
|
"recipe_engine/properties",
|
|
"recipe_engine/step",
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
# Note: The recipe does work on linux as well, if the required dependencies have been installed
|
|
# on the host via ./tools/install-deps.
|
|
# This allows the build to be tested via `./recipe.py run build_windows`
|
|
with api.crosvm.host_build_context():
|
|
api.step(
|
|
"Build crosvm tests",
|
|
[
|
|
"vpython3",
|
|
"./tools/run_tests",
|
|
"--verbose",
|
|
"--target=host",
|
|
"--build-only",
|
|
],
|
|
)
|
|
api.step(
|
|
"Run crosvm tests",
|
|
[
|
|
"vpython3",
|
|
"./tools/run_tests",
|
|
"--verbose",
|
|
"--target=host",
|
|
],
|
|
)
|
|
|
|
|
|
def GenTests(api):
|
|
filter_steps = Filter("Build crosvm tests", "Run crosvm tests")
|
|
yield (
|
|
api.test(
|
|
"build",
|
|
api.buildbucket.ci_build(project="crosvm/crosvm"),
|
|
)
|
|
+ api.post_process(filter_steps)
|
|
)
|