This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git


The following commit(s) were added to refs/heads/main by this push:
     new 650698e10 Ref #495: Skip LevelDB test for AArch64 (#521)
650698e10 is described below

commit 650698e10f0188058176692f30dadf5545a33a77
Author: Nicolas Filotto <[email protected]>
AuthorDate: Tue Oct 15 17:24:39 2024 +0200

    Ref #495: Skip LevelDB test for AArch64 (#521)
---
 tests/features/camel-leveldb/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/tests/features/camel-leveldb/pom.xml 
b/tests/features/camel-leveldb/pom.xml
index cb72ddd07..ce427a2ce 100644
--- a/tests/features/camel-leveldb/pom.xml
+++ b/tests/features/camel-leveldb/pom.xml
@@ -37,4 +37,25 @@
             <version>${camel-version}</version>
         </dependency>
     </dependencies>
+    <profiles>
+        <profile>
+            <id>disable-test-for-unsupported-architectures</id>
+            <activation>
+                <os>
+                    <arch>aarch64</arch>
+                </os>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <skipTests>true</skipTests>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>
\ No newline at end of file

Reply via email to