schutzbot: enable F33 mockbuild

Let's start slowly. This commit enables F33 mockbuilding in Schutzbot.
Actual testing will be enabled in a follow-up.
This commit is contained in:
Ondřej Budai 2020-10-14 13:11:30 +02:00 committed by msehnout
parent 1a69a8919b
commit 7a2f72281e

17
schutzbot/Jenkinsfile vendored
View file

@ -74,6 +74,23 @@ pipeline {
)
}
}
stage('F33') {
agent { label "f33cloudbase && x86_64 && aws" }
environment {
AWS_CREDS = credentials('aws-credentials-osbuildci')
AWS_IMAGE_TEST_CREDS = credentials('aws-credentials-osbuild-image-test')
}
steps {
sh "schutzbot/ci_details.sh"
retry(3) {
sh "schutzbot/mockbuild.sh"
}
stash (
includes: 'osbuild-mock.repo',
name: 'fedora33'
)
}
}
stage('EL8') {
agent { label "rhel8cloudbase && x86_64 && aws" }
environment {