ci: add Fedora 34

It's released!
This commit is contained in:
Ondřej Budai 2021-06-10 08:05:10 +02:00 committed by Christian Kellner
parent badf0034ea
commit ad157cc206

27
schutzbot/Jenkinsfile vendored
View file

@ -51,6 +51,18 @@ pipeline {
}
}
}
stage('F34') {
agent { label "f34cloudbase && x86_64 && aws" }
environment {
AWS_CREDS = credentials('aws-credentials-osbuildci')
}
steps {
sh "schutzbot/ci_details.sh"
retry(3) {
sh "schutzbot/mockbuild.sh"
}
}
}
stage('EL8') {
agent { label "rhel8cloudbase && x86_64 && aws" }
environment {
@ -84,6 +96,21 @@ pipeline {
}
}
}
stage('F34 Integration') {
agent { label "f34cloudbase && x86_64 && aws" }
environment {
TEST_TYPE = "integration"
AWS_CREDS = credentials('aws-credentials-osbuildci')
}
steps {
run_tests('integration')
}
post {
always {
preserve_logs('fedora34-integration')
}
}
}
stage('EL8 Integration') {
agent { label "rhel8cloudbase && x86_64 && psi" }
environment {