mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 12:35:26 +00:00
BUG=none TEST=kokoro Change-Id: I61f80da1c6d82979201aa1b3c11b60d9da6ba705 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3255195 Auto-Submit: Keiichi Watanabe <keiichiw@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com>
11 lines
368 B
Bash
Executable file
11 lines
368 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2021 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.
|
|
source "$(dirname $0)/common.sh"
|
|
|
|
./tools/dev_container bash -c "\
|
|
./tools/run_tests --target=host \
|
|
&& ./tools/clippy \
|
|
&& ./tools/fmt --check \
|
|
&& mdbook build ./docs/book"
|