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 cac1dc2f20cf3423c6d4fac75e25cd5f193b6a7a Author: Otavio R. Piske <[email protected]> AuthorDate: Mon May 15 16:03:44 2023 +0200 (chores) camel-mongodb: disable tests on ppc64le --- components/camel-mongodb/pom.xml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/components/camel-mongodb/pom.xml b/components/camel-mongodb/pom.xml index 7c87d1453c9..c61c1f40d4d 100644 --- a/components/camel-mongodb/pom.xml +++ b/components/camel-mongodb/pom.xml @@ -31,9 +31,6 @@ <name>Camel :: MongoDB</name> <description>Camel MongoDB (Java Driver 3) component</description> - <properties> - </properties> - <dependencies> <dependency> @@ -107,4 +104,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>
