mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
603548ac4e
This is the version that is already being used, since the rust-toolchain file is just set to 'stable' now. Update the Docker image so that kokoro does not have to re-download the new Rust toolchain for every build. Also, explicitly update the default rustup toolchain to 'stable' in the Dockerfile - this prevents `docker run` from having to re-download the toolchain. While we're on a cleanup spree, remove the addition of rustfmt-preview from the smoke_test script; rustfmt is now included by default when installing a toolchain via rustup. BUG=None TEST=docker/build_crosvm_base.sh && docker/wrapped_smoke_test.sh Change-Id: I1359bd7b39dd4ebeaf970a001e0002b3699c9771 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2333116 Reviewed-by: Dylan Reid <dgreid@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
21 lines
632 B
Bash
Executable file
21 lines
632 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2019 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.
|
|
|
|
set -ex
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
cd ../
|
|
|
|
rustup default "$(cat rust-toolchain)"
|
|
cargo --version && rustc --version && rustfmt --version \
|
|
&& cargo clippy --version
|
|
echo "Running cargo test"
|
|
cargo test --no-fail-fast --features plugin,default-no-sandbox,wl-dmabuf,gpu,tpm \
|
|
--all --exclude aarch64 $TEST_FLAGS -- \
|
|
--test-threads=1 $TEST_RUNNER_FLAGS
|
|
echo "Running cargo fmt"
|
|
bin/fmt --check
|
|
echo "Running cargo clippy"
|
|
bin/clippy
|