🖼 Add image tests for aarch64

Test image builds on aarch64 for Fedora 31/32 and RHEL 8 CDN.

More work towards finishing #834.

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-07-14 08:47:26 -05:00 committed by Ondřej Budai
parent f2775a39b4
commit dd65cdbe03

48
schutzbot/Jenkinsfile vendored
View file

@ -133,6 +133,22 @@ pipeline {
}
}
}
stage('Image') {
agent { label "f31cloudbase_aarch64_temporary" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
}
steps {
unstash 'fedora31_aarch64'
run_tests('image')
}
post {
always {
preserve_logs('fedora31-image-aarch64')
}
}
}
}
}
@ -237,6 +253,22 @@ pipeline {
}
}
}
stage('Image') {
agent { label "f32cloudbase_aarch64_temporary" }
environment {
TEST_TYPE = "image"
AWS_CREDS = credentials('aws-credentials-osbuildci')
}
steps {
unstash 'fedora32_aarch64'
run_tests('image')
}
post {
always {
preserve_logs('fedora32-image-aarch64')
}
}
}
}
}
@ -351,6 +383,22 @@ pipeline {
}
}
}
stage('Image') {
agent { label "rhel8cloudbase_aarch64_temporary" }
environment {
TEST_TYPE = "image"
RHN_REGISTRATION_SCRIPT = credentials('rhn-register-script-production-aarch64')
}
steps {
unstash 'rhel8cdn_aarch64'
run_tests('image')
}
post {
always {
preserve_logs('rhel8-image-aarch64')
}
}
}
}
}