mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
ci/kokoro: add a no-default-features build
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>
This commit is contained in:
parent
d9af9d6a58
commit
995c91af7d
2 changed files with 2 additions and 0 deletions
|
@ -8,5 +8,6 @@ source "$(dirname $0)/common.sh"
|
||||||
./tools/run_tests --target=host -v \
|
./tools/run_tests --target=host -v \
|
||||||
&& ./tools/clippy \
|
&& ./tools/clippy \
|
||||||
&& ./tools/fmt --check \
|
&& ./tools/fmt --check \
|
||||||
|
&& cargo build --verbose --no-default-features \
|
||||||
&& mdbook build ./docs/book \
|
&& mdbook build ./docs/book \
|
||||||
&& ./tools/cargo-doc"
|
&& ./tools/cargo-doc"
|
||||||
|
|
|
@ -83,6 +83,7 @@ aarch64_wrapper() {
|
||||||
|
|
||||||
commands=(
|
commands=(
|
||||||
"./tools/fmt --check && ./tools/clippy"
|
"./tools/fmt --check && ./tools/clippy"
|
||||||
|
"cargo build --verbose --no-default-features"
|
||||||
"./tools/run_tests --target=host"
|
"./tools/run_tests --target=host"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue