diff --git a/Jenkinsfile b/Jenkinsfile index bb0d5ba246b..e8952917f3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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.') @@ -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') @@ -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',