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/17 10:42:40 UTC

[camel] branch main updated: (chores) camel-lra: disable tests on non-x86 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


The following commit(s) were added to refs/heads/main by this push:
     new 8f979db4d8f (chores) camel-lra: disable tests on non-x86 architectures
8f979db4d8f is described below

commit 8f979db4d8fe045e9df6825b7e9d6beb267d9d6d
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed May 17 12:42:21 2023 +0200

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

diff --git a/components/camel-lra/pom.xml b/components/camel-lra/pom.xml
index 2a68ce4fa2a..8f20b31dc2f 100644
--- a/components/camel-lra/pom.xml
+++ b/components/camel-lra/pom.xml
@@ -86,4 +86,19 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+        <profile>
+            <!-- LRA Coordinator container is only available for x86 64 -->
+            <id>Notx86</id>
+            <activation>
+                <os>
+                    <arch>!amd64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>true</skipITs>
+            </properties>
+        </profile>
+    </profiles>
+
 </project>