diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 9df57e06..d8e2ab94 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -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') { agent { label "rhel8cloudbase && x86_64" } 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') { agent { label "rhel8cloudbase && x86_64 && psi" } environment {