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 cc1e7f2ed02 (chores) camel-dhis: disable tests on non-x86 architectures cc1e7f2ed02 is described below commit cc1e7f2ed02d8902b6ca6cfabbfe2873f00d1833 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Tue May 16 08:24:54 2023 +0200 (chores) camel-dhis: disable tests on non-x86 architectures --- components/camel-dhis2/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/camel-dhis2/pom.xml b/components/camel-dhis2/pom.xml index 16608dffd4e..7c2c64611e8 100644 --- a/components/camel-dhis2/pom.xml +++ b/components/camel-dhis2/pom.xml @@ -66,4 +66,19 @@ <scope>test</scope> </dependency> </dependencies> + + <profiles> + <profile> + <!-- DHIS 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>