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 2023/05/15 15:22:05 UTC

[camel] 02/02: (chores) camel-nats: disable tests on ppc64le

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

commit dbffc8ec059f770ca8c711ce896e37a282186d4d
Author: Otavio R. Piske <an...@gmail.com>
AuthorDate: Mon May 15 16:13:33 2023 +0200

    (chores) camel-nats: disable tests on ppc64le
---
 components/camel-nats/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/components/camel-nats/pom.xml b/components/camel-nats/pom.xml
index 540f3273984..9630202b225 100644
--- a/components/camel-nats/pom.xml
+++ b/components/camel-nats/pom.xml
@@ -60,4 +60,18 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <profiles>
+       <profile>
+            <id>ppc64le</id>
+            <activation>
+                <os>
+                    <arch>ppc64le</arch>
+               </os>
+            </activation>
+            <properties>
+               <skipITs>true</skipITs>
+          </properties>
+       </profile>
+    </profiles>
 </project>