Skip to content

Commit b0eb32a

Browse files
authored
flowey: add an ado intel tdx pool (#3590)
adds an ado pool for NVMe and TDX testing
1 parent 0166229 commit b0eb32a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

flowey/flowey_hvlite/src/pipelines_shared/ado_pools.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use super::gh_pools::WINDOWS_IMAGE_AMD64;
1010

1111
pub const AMD_POOL_1ES: &str = "openvmm-ado-amd-westus2";
1212
pub const INTEL_POOL_1ES: &str = "openvmm-ado-intel-centralus";
13+
pub const INTEL_TDX_POOL: &str = "openvmm-ado-intel-tdx";
1314

1415
fn ado_pool_with_image_1es(pool: &str, image: &str) -> AdoPool {
1516
AdoPool {
@@ -18,6 +19,13 @@ fn ado_pool_with_image_1es(pool: &str, image: &str) -> AdoPool {
1819
}
1920
}
2021

22+
pub fn windows_intel_tdx() -> AdoPool {
23+
AdoPool {
24+
name: INTEL_TDX_POOL.into(),
25+
demands: vec![],
26+
}
27+
}
28+
2129
pub fn windows_amd_1es() -> AdoPool {
2230
ado_pool_with_image_1es(AMD_POOL_1ES, WINDOWS_IMAGE_AMD64)
2331
}

0 commit comments

Comments
 (0)