This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 827f5befe4d Fix: do not play IT tests for Pinecone on ppc64le (#18158)
827f5befe4d is described below
commit 827f5befe4dd1fa363f0a7ef71d70cc0c5d60e8b
Author: Aurélien Pupier <[email protected]>
AuthorDate: Thu May 22 17:09:46 2025 +0200
Fix: do not play IT tests for Pinecone on ppc64le (#18158)
given that no Docker image is provided for this architecture
Signed-off-by: Aurélien Pupier <[email protected]>
---
components/camel-ai/camel-pinecone/pom.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/components/camel-ai/camel-pinecone/pom.xml
b/components/camel-ai/camel-pinecone/pom.xml
index 3999634b96e..b7c28953534 100644
--- a/components/camel-ai/camel-pinecone/pom.xml
+++ b/components/camel-ai/camel-pinecone/pom.xml
@@ -39,6 +39,9 @@
<!-- Milvus is not available on these platforms -->
<skipITs.s390x>true</skipITs.s390x>
<skipTests.s390x>true</skipTests.s390x>
+
+ <!-- Pinecone Docker image is not available for this architecture -->
+ <skipITs.ppc64le>true</skipITs.ppc64le>
</properties>
<dependencies>