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 904337023ed (chores) camel-chatscript: disable tests on non-x86 
architectures
904337023ed is described below

commit 904337023edf735878fc027c0071a05631243263
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu May 18 08:02:10 2023 +0200

    (chores) camel-chatscript: disable tests on non-x86 architectures
---
 components/camel-chatscript/pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/components/camel-chatscript/pom.xml 
b/components/camel-chatscript/pom.xml
index 6dca8e0133f..c3ddef5a82a 100644
--- a/components/camel-chatscript/pom.xml
+++ b/components/camel-chatscript/pom.xml
@@ -70,4 +70,19 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <profiles>
+        <profile>
+            <!-- Chatscript container is only available for x86 64 and ARM 64 
-->
+            <id>Notx86</id>
+            <activation>
+                <os>
+                    <arch>!amd64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>true</skipITs>
+            </properties>
+        </profile>
+    </profiles>
 </project>

Reply via email to