ci: drop testing Fedora 31

osbuild composer upstream has dropped support for Fedora 31 since
this is very close to end-of-life. Since we use composer master
in our CI this change actually broke it.
This commit is contained in:
Christian Kellner 2020-10-22 17:32:03 +02:00 committed by Lars Karlitski
parent 7081f43153
commit be0765a992

31
schutzbot/Jenkinsfile vendored
View file

@ -32,20 +32,6 @@ pipeline {
failFast true
parallel {
stage('Fedora 31') {
agent { label "f31cloudbase && x86_64" }
environment {
AWS_CREDS = credentials('aws-credentials-osbuildci')
}
steps {
sh "schutzbot/ci_details.sh"
sh "schutzbot/mockbuild.sh"
stash (
includes: 'osbuild-mock.repo',
name: 'fedora31'
)
}
}
stage('Fedora 32') {
agent { label "f32cloudbase && x86_64" }
environment {
@ -99,23 +85,6 @@ pipeline {
failFast false
parallel {
stage('Fedora 31') {
agent { label "f31cloudbase && x86_64 && psi" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
DISTRO_CODE = "fedora31"
}
steps {
unstash 'fedora31'
run_tests()
}
post {
always {
preserve_logs('fedora31-image')
}
}
}
stage('Fedora 32') {
agent { label "f32cloudbase && x86_64 && psi" }
environment {