From 4737679661988fb370d2319a35c5d3889497007a Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 7 Sep 2021 14:28:58 +0000 Subject: [PATCH] github: also build mshv enabled binaries Signed-off-by: Wei Liu --- .github/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8c03f17ae..5ec94b3bc 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -39,6 +39,12 @@ jobs: - name: Build (kvm) run: cargo rustc --bin cloud-hypervisor --no-default-features --features "kvm" -- -D warnings + + - name: Build (acpi,mshv) + run: cargo rustc --bin cloud-hypervisor --no-default-features --features "acpi,mshv" -- -D warnings + + - name: Build (mshv) + run: cargo rustc --bin cloud-hypervisor --no-default-features --features "mshv" -- -D warnings - name: Release Build (default features) run: cargo build --all --release --target=${{ matrix.target }}