mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
ci: cover explicit igvm sev_snp backends
Decoupling removes the old implicit MSHV coverage from standalone igvm and sev_snp jobs. Replace those jobs with explicit KVM feature sets and add MSHV igvm and sev_snp build and clippy jobs so both backends remain covered. This keeps the previous implicit combinations tested while making the selected backend visible in CI. Assisted-by: Copilot:GPT-5.5 Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
46
.github/workflows/ci.yaml
vendored
46
.github/workflows/ci.yaml
vendored
@@ -408,22 +408,46 @@ jobs:
|
|||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
target: ${{ matrix.target }}
|
target: ${{ matrix.target }}
|
||||||
args: --locked --all --all-targets --tests --examples --features "ivshmem" -- -D warnings
|
args: --locked --all --all-targets --tests --examples --features "ivshmem" -- -D warnings
|
||||||
- name: Clippy (sev_snp)
|
- name: Clippy (kvm + sev_snp)
|
||||||
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
uses: houseabsolute/actions-rust-cross@v1
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
target: ${{ matrix.target }}
|
target: ${{ matrix.target }}
|
||||||
args: --locked --all --all-targets --no-default-features --tests --examples --features "sev_snp" -- -D warnings
|
args: --locked --all --all-targets --no-default-features --tests --examples --features "kvm,sev_snp" -- -D warnings
|
||||||
- name: Clippy (igvm)
|
- name: Clippy (mshv + sev_snp)
|
||||||
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
uses: houseabsolute/actions-rust-cross@v1
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
target: ${{ matrix.target }}
|
target: ${{ matrix.target }}
|
||||||
args: --locked --all --all-targets --no-default-features --tests --examples --features "igvm" -- -D warnings
|
args: --locked --all --all-targets --no-default-features --tests --examples --features "mshv,sev_snp" -- -D warnings
|
||||||
|
- name: Clippy (mshv + igvm + sev_snp)
|
||||||
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
toolchain: ${{ matrix.rust }}
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
args: --locked --all --all-targets --no-default-features --tests --examples --features "mshv,igvm,sev_snp" -- -D warnings
|
||||||
|
- name: Clippy (kvm + igvm)
|
||||||
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
toolchain: ${{ matrix.rust }}
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
args: --locked --all --all-targets --no-default-features --tests --examples --features "kvm,igvm" -- -D warnings
|
||||||
|
- name: Clippy (mshv + igvm)
|
||||||
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
toolchain: ${{ matrix.rust }}
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
args: --locked --all --all-targets --no-default-features --tests --examples --features "mshv,igvm" -- -D warnings
|
||||||
- name: Clippy (kvm + tdx)
|
- name: Clippy (kvm + tdx)
|
||||||
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
|
||||||
uses: houseabsolute/actions-rust-cross@v1
|
uses: houseabsolute/actions-rust-cross@v1
|
||||||
@@ -498,12 +522,18 @@ jobs:
|
|||||||
run: cargo build --locked --bin cloud-hypervisor --features "ivshmem"
|
run: cargo build --locked --bin cloud-hypervisor --features "ivshmem"
|
||||||
- name: Build (mshv)
|
- name: Build (mshv)
|
||||||
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv"
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv"
|
||||||
- name: Build (sev_snp)
|
- name: Build (mshv + igvm)
|
||||||
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "sev_snp"
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv,igvm"
|
||||||
|
- name: Build (mshv + sev_snp)
|
||||||
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv,sev_snp"
|
||||||
|
- name: Build (mshv + igvm + sev_snp)
|
||||||
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv,igvm,sev_snp"
|
||||||
|
- name: Build (kvm + sev_snp)
|
||||||
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "kvm,sev_snp"
|
||||||
- name: Build (kvm + igvm + sev_snp + fw_cfg)
|
- name: Build (kvm + igvm + sev_snp + fw_cfg)
|
||||||
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "kvm,igvm,sev_snp,fw_cfg"
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "kvm,igvm,sev_snp,fw_cfg"
|
||||||
- name: Build (igvm)
|
- name: Build (kvm + igvm)
|
||||||
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "igvm"
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "kvm,igvm"
|
||||||
- name: Build (mshv + kvm)
|
- name: Build (mshv + kvm)
|
||||||
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv,kvm"
|
run: cargo build --locked --bin cloud-hypervisor --no-default-features --features "mshv,kvm"
|
||||||
- name: Release Build (default features)
|
- name: Release Build (default features)
|
||||||
|
|||||||
Reference in New Issue
Block a user