mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
995c91af7d
To help find missing feature cfg checks, add a build with all features disabled to the CI scripts. BUG=None TEST=tools/presubmit Change-Id: I98f38ecc3bf90cbeb081a1fafe4f2f540e4fc348 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3437362 Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
13 lines
462 B
Bash
Executable file
13 lines
462 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 \
|
|
&& cargo build --verbose --no-default-features \
|
|
&& mdbook build ./docs/book \
|
|
&& ./tools/cargo-doc"
|