Skip to content
Open
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
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ pipeline {
booleanParam(name: 'CI_large_md_on_ssd_TEST',
defaultValue: true,
description: 'Run the Functional Hardware Large MD on SSD test stage')
booleanParam(name: 'CI_cb_md_on_ssd_TEST',
defaultValue: true,
description: 'Run the Functional Cluster Box test stage')
string(name: 'FUNCTIONAL_VM_LABEL',
defaultValue: 'ci_vm9',
description: 'Label to use for 9 VM functional tests')
Expand All @@ -199,6 +202,9 @@ pipeline {
string(name: 'FUNCTIONAL_HARDWARE_LARGE_MD_ON_SSD_LABEL',
defaultValue: 'ci_nvme9',
description: 'Label to use for the Functional Hardware Large MD on SSD stage')
string(name: 'FUNCTIONAL_CLUSTER_BOX_LABEL',
defaultValue: 'cluster_box',
description: 'Label to use for the Functional Cluster Box stages')
string(name: 'CI_STORAGE_PREP_LABEL',
defaultValue: '',
description: 'Label for cluster to do a DAOS Storage Preparation')
Expand Down Expand Up @@ -438,6 +444,20 @@ pipeline {
run_if_landing: false,
job_status: job_status_internal
),
'Functional Cluster Box Medium MD on SSD': getFunctionalTestStage(
name: "Functional Cluster Box Medium MD on SSD",
pragma_suffix:'-cb-md-on-ssd',
base_branch: params.BaseBranch,
label: params.FUNCTIONAL_CLUSTER_BOX_LABEL,
next_version: params.BaseBranch,,
stage_tags: "cb,medium",
default_tags: isPr() ? 'always_passes' : 'pr daily_regression',
nvme: 'auto_md_on_ssd',
node_count: 5,
run_if_pr: true,
run_if_landing: false,
job_status: job_status_internal
),
)
}
}
Expand Down
Loading