You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2022/09/23 17:49:38 UTC

[kafka] branch 3.3 updated: MINOR: Remove ARM/PowerPC builds from Jenkinsfile (#12380)

This is an automated email from the ASF dual-hosted git repository.

davidarthur pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/3.3 by this push:
     new 46e6269a5be MINOR: Remove ARM/PowerPC builds from Jenkinsfile (#12380)
46e6269a5be is described below

commit 46e6269a5be2c36a43cfd448a5c2a85481754a8d
Author: Jason Gustafson <ja...@confluent.io>
AuthorDate: Wed Aug 3 15:34:31 2022 -0700

    MINOR: Remove ARM/PowerPC builds from Jenkinsfile (#12380)
    
    Reviewers: Colin P. McCabe <cm...@apache.org>, Ismael Juma <is...@juma.me.uk>
---
 Jenkinsfile | 66 -------------------------------------------------------------
 1 file changed, 66 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e3a7154c16e..985c19064bd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -155,72 +155,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