From 595a24d27004ce4ef4789cabf8e91b6cdc8f84e8 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 7 Jul 2026 23:08:34 +0000 Subject: [PATCH] build: Mark vfio runner as required for MQ Across the last 20 MQ runs, all 13 vfio runner failures came from two flaky tests. Both are now skipped and tracked in #8548 and #8549. Signed-off-by: Bo Chen --- .github/workflows/ci.yaml | 3 +-- cloud-hypervisor/tests/integration.rs | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 47ab11600..cbbbe9157 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -870,8 +870,7 @@ jobs: - hadolint - integration-arm64 - integration-sev-snp - # VFIO worker is failing #8160 - # - integration-vfio + - integration-vfio - integration-mshv-x86-64 - integration-windows - integration-x86-64-mq diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 65b2ca743..37368e54e 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -12094,6 +12094,7 @@ mod vfio { } #[test] + #[ignore = "See #8548"] fn test_iommufd_nvidia_card_pci_hotplug() { test_nvidia_card_pci_hotplug_common(true); } @@ -12340,6 +12341,7 @@ mod vfio { } #[test] + #[ignore = "See #8549"] fn test_iommufd_nvidia_card_x_exclude_mmap_bars() { test_nvidia_card_x_exclude_mmap_bars_common(true); }