You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mi...@apache.org on 2022/03/07 09:21:47 UTC

[kafka] branch trunk updated: KAFKA-13671: Add ppc64le build stage (#11833)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new bbb2dc5  KAFKA-13671: Add ppc64le build stage (#11833)
bbb2dc5 is described below

commit bbb2dc54a0f45bc5455f22a0671adde206dcfa29
Author: Mickael Maison <mi...@users.noreply.github.com>
AuthorDate: Mon Mar 7 10:18:54 2022 +0100

    KAFKA-13671: Add ppc64le build stage (#11833)
    
    
    Reviewers: David Arthur <mu...@gmail.com>
---
 Jenkinsfile | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 6b75cfd..55c9d50 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -178,6 +178,24 @@ pipeline {
             echo 'Skipping Kafka Streams archetype test for ARM build'
           }
         }
+
+        stage('PowerPC') {
+          agent { label 'ppc64le' }
+          options {
+            timeout(time: 2, unit: 'HOURS')
+            timestamps()
+          }
+          environment {
+            SCALA_VERSION=2.12
+          }
+          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