This is an automated email from the ASF dual-hosted git repository.
apupier 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 724323cb9fc4 Skip unit test for DuckDb on ppc64le and s390x
724323cb9fc4 is described below
commit 724323cb9fc4623d6e04eb430d9943123f47e4a3
Author: Aurélien Pupier <[email protected]>
AuthorDate: Mon Jul 27 09:04:09 2026 +0200
Skip unit test for DuckDb on ppc64le and s390x
the integration tests were already skipped.
it is failing with:
```
Caused by: java.lang.ExceptionInInitializerError: Exception
java.lang.IllegalStateException: Unsupported system architecture [in
thread "main"]
at org.duckdb.DuckDBNative.<clinit>(DuckDBNative.java:36)
at
org.duckdb.DuckDBConnection.newConnection(DuckDBConnection.java:58)
at org.duckdb.DuckDBDriver.connect(DuckDBDriver.java:117)
at
java.sql/java.sql.DriverManager.getConnection(DriverManager.java:683)
at
java.sql/java.sql.DriverManager.getConnection(DriverManager.java:191)
at
org.apache.camel.component.duckdb.DuckDbEndpoint.doStart(DuckDbEndpoint.java:136)
at
org.apache.camel.support.service.BaseService.start(BaseService.java:132)
```
Signed-off-by: Aurélien Pupier <[email protected]>
---
components/camel-duckdb/pom.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/components/camel-duckdb/pom.xml b/components/camel-duckdb/pom.xml
index 1d5c8752155d..16fa7ce3a42c 100644
--- a/components/camel-duckdb/pom.xml
+++ b/components/camel-duckdb/pom.xml
@@ -34,6 +34,8 @@
<properties>
<skipITs.ppc64le>true</skipITs.ppc64le>
<skipITs.s390x>true</skipITs.s390x>
+ <skipTests.ppc64le>true</skipTests.ppc64le>
+ <skipTests.s390x>true</skipTests.s390x>
</properties>
<dependencies>