From efed77800698fdc179fc88fad809cd4f5f382c5c Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 15 May 2020 08:06:45 -0500 Subject: [PATCH] Add RHEL 8.2 testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Run the base and image tests on RHEL 8.2. 🚂 Signed-off-by: Major Hayden --- schutzbot/Jenkinsfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 272b09c44..634a7e999 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -57,6 +57,30 @@ pipeline { } } } + stage('RHEL 8.2 base') { + agent { label "rhel82" } + environment { TEST_TYPE = "base" } + steps { + run_tests() + } + post { + always { + preserve_logs('rhel82-base') + } + } + } + stage('RHEL 8.2 image') { + agent { label "rhel82" } + environment { TEST_TYPE = "image" } + steps { + run_tests() + } + post { + always { + preserve_logs('rhel82-image') + } + } + } } } }