mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
3e7c388efa
BUG=none TEST=Run GitHub Action on my personal GitHub repository Change-Id: I62de2693f3a654e0bbd327eff5931380a153395d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3305958 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org>
12 lines
409 B
Bash
Executable file
12 lines
409 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 --hermetic bash -c "\
|
|
./tools/run_tests --target=host -v \
|
|
&& ./tools/clippy \
|
|
&& ./tools/fmt --check \
|
|
&& mdbook build ./docs/book \
|
|
&& ./tools/cargo-doc"
|