From b01bd49241fb150253d2bb0b73ba3f2d97b06dc9 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 13 Jul 2020 11:20:36 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=B7=F0=9F=8F=BB=E2=80=8D=E2=99=82?= =?UTF-8?q?=EF=B8=8F=20Allow=20tests=20to=20run=20on=20AWS=20and=20PSI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In #842, we verified that our tests run on AWS properly and we should now let Jenkins decide where to run the tests since they work in both places. Remove the hardcoded AWS label and allow tests to run where they please. Signed-off-by: Major Hayden --- schutzbot/Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 4036030bb..9660ac634 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -169,7 +169,7 @@ pipeline { parallel { stage('Fedora 31 base') { - agent { label "f31cloudbase && x86_64 && aws" } + agent { label "f31cloudbase && x86_64" } environment { TEST_TYPE = "base" } steps { unstash 'fedora31' @@ -198,7 +198,7 @@ pipeline { } } stage('Fedora 31 integration') { - agent { label "f31cloudbase && x86_64 && aws" } + agent { label "f31cloudbase && x86_64" } environment { TEST_TYPE = "integration" AWS_CREDS = credentials('aws-credentials-osbuildci') @@ -214,7 +214,7 @@ pipeline { } } stage('Fedora 32 base') { - agent { label "f32cloudbase && x86_64 && aws" } + agent { label "f32cloudbase && x86_64" } environment { TEST_TYPE = "base" } steps { unstash 'fedora32' @@ -243,7 +243,7 @@ pipeline { } } stage('Fedora 32 integration') { - agent { label "f32cloudbase && x86_64 && aws" } + agent { label "f32cloudbase && x86_64" } environment { TEST_TYPE = "integration" AWS_CREDS = credentials('aws-credentials-osbuildci') @@ -259,7 +259,7 @@ pipeline { } } stage('RHEL 8 CDN Base') { - agent { label "rhel8cloudbase && x86_64 && aws" } + agent { label "rhel8cloudbase && x86_64" } environment { RHN_REGISTRATION_SCRIPT = credentials('rhn-register-script-production') TEST_TYPE = "base" @@ -291,7 +291,7 @@ pipeline { } } stage('RHEL 8 CDN integration') { - agent { label "rhel8cloudbase && x86_64 && aws" } + agent { label "rhel8cloudbase && x86_64" } environment { TEST_TYPE = "integration" AWS_CREDS = credentials('aws-credentials-osbuildci')