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/19 08:20:55 UTC

[camel] 02/02: (chores) camel-nats: disable tests on non-x86/arm architectures

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 e437f1dec129cbbbf15ede5e47955114a93e55cd
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Fri May 19 10:20:17 2023 +0200

    (chores) camel-nats: disable tests on non-x86/arm architectures
---
 components/camel-nats/pom.xml | 27 ++++++++++++++++++++-------
 1 file changed, 20 insertions(+), 7 deletions(-)

diff --git a/components/camel-nats/pom.xml b/components/camel-nats/pom.xml
index 9630202b225..2819f6eb6e3 100644
--- a/components/camel-nats/pom.xml
+++ b/components/camel-nats/pom.xml
@@ -32,6 +32,7 @@
     <name>Camel :: Nats</name>
 
     <properties>
+        <skipITs>true</skipITs>
     </properties>
 
     <dependencies>
@@ -62,16 +63,28 @@
     </dependencies>
 
     <profiles>
-       <profile>
-            <id>ppc64le</id>
+        <profile>
+            <!-- Nats container is only available for x86 64 and ARM 64 -->
+            <id>x86</id>
             <activation>
                 <os>
-                    <arch>ppc64le</arch>
-               </os>
+                    <arch>amd64</arch>
+                </os>
             </activation>
             <properties>
-               <skipITs>true</skipITs>
-          </properties>
-       </profile>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
+        <profile>
+            <id>Arm</id>
+            <activation>
+                <os>
+                    <arch>aarch64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
     </profiles>
 </project>