From e4e527b5b7cdf8bb6e48a6ec3ace7d9d9b155bc0 Mon Sep 17 00:00:00 2001 From: Aleksandar Todorov Date: Tue, 23 Feb 2021 18:35:31 +0200 Subject: [PATCH] schutzbot: build osbuild for aarch64 RHEL8/CentOS 8 needed for https://github.com/osbuild/osbuild-composer/pull/1229 --- schutzbot/Jenkinsfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index ad5fb009..50a077c9 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -73,6 +73,17 @@ pipeline { sh "schutzbot/mockbuild.sh" } } + stage('RHEL 8 aarch64 CDN') { + agent { label "rhel8cloudbase && aarch64 && aws" } + environment { + AWS_CREDS = credentials('aws-credentials-osbuildci') + RHN_REGISTRATION_SCRIPT = credentials('rhn-register-script-production') + } + steps { + sh "schutzbot/ci_details.sh" + sh "schutzbot/mockbuild.sh" + } + } stage('RHEL 8.4') { agent { label "rhel84cloudbase && x86_64 && psi" } environment { @@ -94,6 +105,16 @@ pipeline { sh "schutzbot/mockbuild.sh" } } + stage('CS8 aarch64') { + agent { label "cs8cloudbase && aarch64 && aws" } + environment { + AWS_CREDS = credentials('aws-credentials-osbuildci') + } + steps { + sh "schutzbot/ci_details.sh" + sh "schutzbot/mockbuild.sh" + } + } } } stage("Functional Testing") {