mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 03:21:13 +00:00
f47f221f24
Now that vhost_user_net crate does not depend on the virtio-devices crate it is no longer compiled differently based on the mmio or pci features. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
26 lines
1.1 KiB
Bash
Executable File
26 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
source $HOME/.cargo/env
|
|
|
|
# Install cargo components
|
|
time rustup component add clippy
|
|
time rustup component add rustfmt
|
|
time which cargo-audit || cargo install cargo-audit
|
|
|
|
# Run cargo builds and checks
|
|
time cargo clippy --all-targets --all-features -- -D warnings
|
|
time cargo rustc --bin cloud-hypervisor -- -D warnings
|
|
time cargo rustc -p vhost_user_net --bin vhost_user_net -- -D warnings
|
|
time cargo test
|
|
time cargo audit
|
|
time cargo clippy --all-targets --no-default-features --features "pci,acpi,kvm" -- -D warnings
|
|
time cargo rustc --bin cloud-hypervisor --no-default-features --features "pci,acpi,kvm" -- -D warnings
|
|
time cargo clippy --all-targets --no-default-features --features "pci,kvm" -- -D warnings
|
|
time cargo rustc --bin cloud-hypervisor --no-default-features --features "pci,kvm" -- -D warnings
|
|
time cargo clippy --all-targets --no-default-features --features "mmio,kvm" -- -D warnings
|
|
time cargo rustc --bin cloud-hypervisor --no-default-features --features "mmio,kvm" -- -D warnings
|
|
time cargo fmt -- --check
|
|
time cargo build --all --release
|