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
21 changes: 0 additions & 21 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,6 @@ pipeline {
string(name: 'CI_HARDWARE_DISTRO',
defaultValue: '',
description: 'Distribution to use for CI Hardware Tests')
string(name: 'CI_EL8_TARGET',
defaultValue: '',
description: 'Image to used for EL 8 CI tests. I.e. el8, el8.3, etc.')
string(name: 'CI_EL9_TARGET',
defaultValue: '',
description: 'Image to used for EL 9 CI tests. I.e. el9, el9.1, etc.')
Expand All @@ -140,9 +137,6 @@ pipeline {
string(name: 'CI_UBUNTU20.04_TARGET',
defaultValue: '',
description: 'Image to used for Ubuntu 20 CI tests. I.e. ubuntu20.04, etc.')
booleanParam(name: 'CI_FUNCTIONAL_el8_TEST',
defaultValue: true,
description: 'Run the Functional on EL 8 test stage')
booleanParam(name: 'CI_FUNCTIONAL_el9_TEST',
defaultValue: true,
description: 'Run the Functional on EL 9 test stage')
Expand Down Expand Up @@ -284,21 +278,6 @@ pipeline {
// pragmas will be ignored. This is to avoid multiple parallel test stages
// from duplicating testing.
parallel(
'Functional on EL 8': getFunctionalTestStage(
name: 'Functional on EL 8',
pragma_suffix: '-vm',
distro: 'el8',
image_version: 'el8.10',
base_branch: params.BaseBranch,
label: vm9_label('EL8'),
next_version: params.BaseBranch,
stage_tags: '-hw',
default_tags: isPr() ? 'always_passes' : 'pr daily_regression',
nvme: 'auto',
run_if_pr: true,
run_if_landing: true,
job_status: job_status_internal
),
'Functional on EL 9': getFunctionalTestStage(
name: 'Functional on EL 9',
pragma_suffix: '-vm',
Expand Down
Loading