mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
This vastly improves iterative build times and enables more flexible usage of the container. BUG=None TEST=./tools/dev_container cargo build First run will build everything. Second run will finish right away. Change-Id: I9b4eeee0689f0e9d07f0a32f846d21ab42f689f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3292100 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Junichi Uekawa <uekawa@chromium.org>
11 lines
382 B
Bash
Executable file
11 lines
382 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"
|