You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/06/08 15:19:44 UTC

[camel] branch main updated: (chores) ci: use Strimzi images for testing Kafka code on s390x

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new f5b9096b16d (chores) ci: use Strimzi images for testing Kafka code on s390x
f5b9096b16d is described below

commit f5b9096b16d31e98e7da45a2049bbc9c109aa53c
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Jun 8 17:19:10 2022 +0200

    (chores) ci: use Strimzi images for testing Kafka code on s390x
---
 Jenkinsfile.s390x | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.s390x b/Jenkinsfile.s390x
index 1a2b2f4a2a5..2eecc506f05 100644
--- a/Jenkinsfile.s390x
+++ b/Jenkinsfile.s390x
@@ -21,6 +21,7 @@ def AGENT_LABEL = 's390x'
 def JDK_NAME = env.JDK_NAME ?: 'jdk_11_latest'
 
 def MAVEN_PARAMS = "-B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true -Dsurefire.rerunFailingTestsCount=2"
+def MAVEN_TEST_PARAMS = "-Dkafka.instance.type=local-strimzi-container"
 
 pipeline {
 
@@ -77,7 +78,7 @@ pipeline {
         stage('Test') {
             steps {
                 // Remove camel-kudu and docs as these are not supported on s390x.
-                sh "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify -pl '!docs,!components/camel-kudu,!components/camel-djl'"
+                sh "./mvnw $MAVEN_PARAMS $MAVEN_TEST_PARAMS -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify -pl '!docs,!components/camel-kudu,!components/camel-djl'"
             }
             post {
                 always {