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 753268d3b14a7e1214d15907059733fc134088ce Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon May 15 15:06:44 2023 +0200 (chores) camel-fhir: cleanup disabling tests on platforms where it's not available --- components/camel-fhir/pom.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/components/camel-fhir/pom.xml b/components/camel-fhir/pom.xml index 6042fc45ea4..59100383c83 100644 --- a/components/camel-fhir/pom.xml +++ b/components/camel-fhir/pom.xml @@ -37,4 +37,30 @@ <module>camel-fhir-component</module> </modules> + <profiles> + <profile> + <!-- FHIR container is only available for x86 64 and ARM--> + <id>Notx86</id> + <activation> + <os> + <arch>!amd64</arch> + </os> + </activation> + <properties> + <skipITs>true</skipITs> + </properties> + </profile> + <profile> + <id>NotARM</id> + <activation> + <os> + <arch>!aarch64</arch> + </os> + </activation> + <properties> + <skipITs>true</skipITs> + </properties> + </profile> + </profiles> + </project>
