From 7596bdf5e2fdc82e2a4a8fd5b8fee45f76ad5d01 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 22 Oct 2020 17:45:02 +0200 Subject: [PATCH] ci: start testing on Fedora 33 Now that Fedora 33 is about to be released and support is present in composer, start testing it. --- schutzbot/Jenkinsfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) 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 {