From 8f6cc2f5599e7c91e37915e33834982eb0607a4c Mon Sep 17 00:00:00 2001 From: Jason Gustafson Date: Tue, 5 Jul 2022 10:55:50 -0700 Subject: [PATCH 1/2] MINOR: Get rid of agent checks in Jenkinsfile --- Jenkinsfile | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7946f9a7fbeee..da2fb0c4a3e6a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -169,15 +169,6 @@ pipeline { SCALA_VERSION=2.12 } stages { - stage('Check ARM Agent') { - agent { label 'arm4' } - options { - timeout(time: 5, unit: 'MINUTES') - } - steps { - echo 'ARM ok' - } - } stage('Run ARM Build') { agent { label 'arm4' } options { @@ -202,15 +193,6 @@ pipeline { SCALA_VERSION=2.12 } stages { - stage('Check PowerPC Agent') { - agent { label 'ppc64le' } - options { - timeout(time: 5, unit: 'MINUTES') - } - steps { - echo 'PowerPC ok' - } - } stage('Run PowerPC Build') { agent { label 'ppc64le' } options { From 8f64477832ac190ec349e188ba47d830aaaed3c8 Mon Sep 17 00:00:00 2001 From: Jason Gustafson Date: Sat, 9 Jul 2022 10:46:41 -0700 Subject: [PATCH 2/2] Remove ARM/PowerPC builds from Jenkinsfile --- Jenkinsfile | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index da2fb0c4a3e6a..cce625b8d8ea3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -160,54 +160,6 @@ pipeline { echo 'Skipping Kafka Streams archetype test for Java 17' } } - - stage('ARM') { - options { - timestamps() - } - environment { - SCALA_VERSION=2.12 - } - stages { - stage('Run ARM Build') { - agent { label 'arm4' } - options { - timeout(time: 2, unit: 'HOURS') - } - steps { - doValidation() - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - doTest(env, 'unitTest') - } - echo 'Skipping Kafka Streams archetype test for ARM build' - } - } - } - } - - stage('PowerPC') { - options { - timestamps() - } - environment { - SCALA_VERSION=2.12 - } - stages { - stage('Run PowerPC Build') { - agent { label 'ppc64le' } - options { - timeout(time: 2, unit: 'HOURS') - } - steps { - doValidation() - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - doTest(env, 'unitTest') - } - echo 'Skipping Kafka Streams archetype test for PowerPC build' - } - } - } - } // To avoid excessive Jenkins resource usage, we only run the stages // above at the PR stage. The ones below are executed after changes