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 499bb1fd02f (chores) camel-etcd3: skip tests on s390x and ppc64le
499bb1fd02f is described below

commit 499bb1fd02f4f172f55dff138fd6efaeb0f1e255
Author: Otavio Rodolfo Piske <angusyo...@gmail.com>
AuthorDate: Mon Nov 11 14:38:17 2024 +0100

    (chores) camel-etcd3: skip tests on s390x and ppc64le
    
    Recent etcd3 seems very unstable on these platforms and have been causing 
crashes and failures
---
 components/camel-etcd3/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/components/camel-etcd3/pom.xml b/components/camel-etcd3/pom.xml
index 418a014eb72..558ab809f42 100644
--- a/components/camel-etcd3/pom.xml
+++ b/components/camel-etcd3/pom.xml
@@ -37,9 +37,13 @@
         <label>database</label>
         <supportLevel>Preview</supportLevel>
 
-        <!-- Etcd3 container is not available on these platforms -->
+        <!-- Etcd3 container is not available or unstable on these platforms 
-->
         <skipTests.aarch64>true</skipTests.aarch64>
         <skipITs.aarch64>true</skipITs.aarch64>
+        <skipTests.s390x>true</skipTests.s390x>
+        <skipITs.s390x>true</skipITs.s390x>
+        <skipTests.ppc64le>true</skipTests.ppc64le>
+        <skipITs.ppc64le>true</skipITs.ppc64le>
     </properties>
 
     <dependencies>

Reply via email to