Add RHEL 8.2 testing

Run the base and image tests on RHEL 8.2. 🚂

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-05-15 08:06:45 -05:00 committed by Major Hayden
parent 11e3724ab5
commit efed778006

24
schutzbot/Jenkinsfile vendored
View file

@ -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')
}
}
}
}
}
}