diff --git a/Jenkinsfile b/Jenkinsfile index 7946f9a7fbeee..cce625b8d8ea3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -160,72 +160,6 @@ pipeline { echo 'Skipping Kafka Streams archetype test for Java 17' } } - - stage('ARM') { - options { - timestamps() - } - environment { - 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 { - 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('Check PowerPC Agent') { - agent { label 'ppc64le' } - options { - timeout(time: 5, unit: 'MINUTES') - } - steps { - echo 'PowerPC ok' - } - } - 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