Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions flowey/flowey_hvlite/src/pipelines/checkin_gates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1053,12 +1053,12 @@ impl IntoPipeline for CheckinGatesCli {
KnownTestArtifacts::VmgsWith16kTpm,
];

let cvm_filter = |arch| {
let cvm_filter = |isolation_type| {
let mut filter = format!(
"test({arch}) + (test(vbs) & test(hyperv)) + test(very_heavy) + test(openvmm_openhcl_uefi_x64_windows_datacenter_core_2025_x64_prepped_vbs)"
"test({isolation_type}) + (test(vbs) & test(hyperv)) + test(very_heavy) + test(openvmm_openhcl_uefi_x64_windows_datacenter_core_2025_x64_prepped_vbs)"
);
// OpenHCL PCAT tests are flakey on AMD SNP runners, so only run on TDX for now
if arch == "tdx" {
if isolation_type == "tdx" {
filter.push_str(" + test(hyperv_openhcl_pcat)");
}

Expand All @@ -1073,6 +1073,11 @@ impl IntoPipeline for CheckinGatesCli {
filter.push_str(" + (test(servicing) & test(hyperv))");
}
}

// Exclude any PCAT tests that were picked up by other filters
if isolation_type == "snp" {
filter = format!("({filter}) & !test(pcat)")
}
filter
};
let cvm_x64_test_artifacts = vec![
Expand Down