diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7d178f44c..394c9279a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -53,6 +53,9 @@ jobs: - name: Build (default features + gdb) run: cargo rustc --locked --bin cloud-hypervisor --features "gdb" -- -D warnings + - name: Build (default features + guest_debug) + run: cargo rustc --locked --bin cloud-hypervisor --features "guest_debug" -- -D warnings + - name: Build (common + mshv) run: cargo rustc --locked --bin cloud-hypervisor --no-default-features --features "common,mshv" -- -D warnings