mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 20:19:07 +00:00
The check will verify that the Cargo.lock file is current. This catches issues where conflicting changes would leave ToT with an outdated lockfile. BUG=b:240435583 TEST=./tools/health-check lockfiles Change-Id: Idd92fe58d3b76f62582848673cbfdd18698ac3e8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3811202 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com> Tested-by: Dennis Kempin <denniskempin@google.com>
64 lines
1.8 KiB
Python
64 lines
1.8 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/raw_io",
|
|
"recipe_engine/buildbucket",
|
|
"recipe_engine/context",
|
|
"recipe_engine/properties",
|
|
"recipe_engine/step",
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
with api.crosvm.container_build_context():
|
|
api.step(
|
|
"Self-test dev-container",
|
|
[
|
|
"vpython3",
|
|
api.crosvm.source_dir.join("tools/dev_container"),
|
|
"--verbose",
|
|
"--self-test",
|
|
],
|
|
)
|
|
result = api.step(
|
|
"List checks to run",
|
|
[
|
|
"vpython3",
|
|
api.crosvm.source_dir.join("tools/health-check"),
|
|
"--list-checks",
|
|
],
|
|
stdout=api.raw_io.output(),
|
|
)
|
|
check_list = result.stdout.strip().decode("utf-8").split("\n")
|
|
for check in check_list:
|
|
api.crosvm.step_in_container(
|
|
"Checking %s" % check, ["./tools/health-check", "--all", check]
|
|
)
|
|
|
|
api.crosvm.step_in_container("Checking mdbook", ["mdbook", "build", "docs/book/"])
|
|
api.crosvm.step_in_container(
|
|
"Checking cargo docs",
|
|
["./tools/cargo-doc"],
|
|
)
|
|
|
|
|
|
def GenTests(api):
|
|
yield (
|
|
api.test(
|
|
"basic",
|
|
api.buildbucket.ci_build(project="crosvm/crosvm"),
|
|
# Provide a fake response to --list-checks
|
|
api.step_data(
|
|
"List checks to run",
|
|
stdout=api.raw_io.output("a\nb"),
|
|
),
|
|
)
|
|
+ api.post_process(Filter().include_re(r"Checking.*"))
|
|
)
|