From dd65cdbe03f3ee2e42cb09cb7a9f13c235fe76c8 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 14 Jul 2020 08:47:26 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=BC=20Add=20image=20tests=20for=20aarc?= =?UTF-8?q?h64?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test image builds on aarch64 for Fedora 31/32 and RHEL 8 CDN. More work towards finishing #834. Signed-off-by: Major Hayden --- schutzbot/Jenkinsfile | 48 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index a35925bbe..f54f11aba 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -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') + } + } + } } }