ci: start testing on Fedora 33
Now that Fedora 33 is about to be released and support is present in composer, start testing it.
This commit is contained in:
parent
be0765a992
commit
7596bdf5e2
1 changed files with 31 additions and 0 deletions
31
schutzbot/Jenkinsfile
vendored
31
schutzbot/Jenkinsfile
vendored
|
|
@ -46,6 +46,20 @@ pipeline {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Fedora 33') {
|
||||||
|
agent { label "f33cloudbase && 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: 'fedora33'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('RHEL 8 CDN') {
|
stage('RHEL 8 CDN') {
|
||||||
agent { label "rhel8cloudbase && x86_64" }
|
agent { label "rhel8cloudbase && x86_64" }
|
||||||
environment {
|
environment {
|
||||||
|
|
@ -102,6 +116,23 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Fedora 33') {
|
||||||
|
agent { label "f33cloudbase && x86_64 && psi" }
|
||||||
|
environment {
|
||||||
|
TEST_TYPE = "image"
|
||||||
|
AWS_CREDS = credentials('aws-credentials-osbuildci')
|
||||||
|
DISTRO_CODE = "fedora33"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
unstash 'fedora33'
|
||||||
|
run_tests()
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
preserve_logs('fedora33-image')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('RHEL 8 CDN') {
|
stage('RHEL 8 CDN') {
|
||||||
agent { label "rhel8cloudbase && x86_64 && psi" }
|
agent { label "rhel8cloudbase && x86_64 && psi" }
|
||||||
environment {
|
environment {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue