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/16 06:40:59 UTC

[camel] branch main updated (62b3425155d -> eb0536ed86f)

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

orpiske pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 62b3425155d (chores) camel-elasticsearch: disable tests on non-x86 architectures
     new c03ea9e7aeb (chores) camel-mongo: fixed formatting
     new 5ca21080168 (chores) camel-mongodb-gridfs: disable tests on ppc64le
     new efced319acd (chores) camel-azure-storage-queue: disable tests on non-x86 architectures
     new eb0536ed86f (chores) camel-azure-storage-blob: disable tests on non-x86 architectures

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel-azure/camel-azure-storage-blob/pom.xml   | 27 ++++++++++++++++++++++
 .../camel-azure/camel-azure-storage-queue/pom.xml  | 27 ++++++++++++++++++++++
 components/camel-mongodb-gridfs/pom.xml            | 15 +++++++++++-
 components/camel-mongodb/pom.xml                   |  8 +++----
 4 files changed, 72 insertions(+), 5 deletions(-)


[camel] 01/04: (chores) camel-mongo: fixed formatting

Posted by or...@apache.org.
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 c03ea9e7aeb9f1a2ddaee1d13e6c61679a764967
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 16 08:34:14 2023 +0200

    (chores) camel-mongo: fixed formatting
---
 components/camel-mongodb/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-mongodb/pom.xml b/components/camel-mongodb/pom.xml
index c61c1f40d4d..2d8ad584e26 100644
--- a/components/camel-mongodb/pom.xml
+++ b/components/camel-mongodb/pom.xml
@@ -106,7 +106,7 @@
     </dependencies>
 
     <profiles>
-	<profile>
+        <profile>
             <id>ppc64le</id>
             <activation>
                 <os>
@@ -114,8 +114,8 @@
                 </os>
             </activation>
             <properties>
-		<skipITs>true</skipITs>
-	   </properties>
-	</profile>
+                <skipITs>true</skipITs>
+            </properties>
+        </profile>
     </profiles>
 </project>


[camel] 02/04: (chores) camel-mongodb-gridfs: disable tests on ppc64le

Posted by or...@apache.org.
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 5ca21080168109bc7009441d0d024d923646165d
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 16 08:35:35 2023 +0200

    (chores) camel-mongodb-gridfs: disable tests on ppc64le
---
 components/camel-mongodb-gridfs/pom.xml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/components/camel-mongodb-gridfs/pom.xml b/components/camel-mongodb-gridfs/pom.xml
index e0406c596ea..af80f32a2b6 100644
--- a/components/camel-mongodb-gridfs/pom.xml
+++ b/components/camel-mongodb-gridfs/pom.xml
@@ -75,6 +75,19 @@
             <artifactId>camel-test-junit5</artifactId>
             <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>


[camel] 04/04: (chores) camel-azure-storage-blob: disable tests on non-x86 architectures

Posted by or...@apache.org.
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 eb0536ed86f4b9c229e406813661e9cb6b6e5135
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 16 08:40:34 2023 +0200

    (chores) camel-azure-storage-blob: disable tests on non-x86 architectures
---
 .../camel-azure/camel-azure-storage-blob/pom.xml   | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/components/camel-azure/camel-azure-storage-blob/pom.xml b/components/camel-azure/camel-azure-storage-blob/pom.xml
index 922b911c8f0..731e99357b3 100644
--- a/components/camel-azure/camel-azure-storage-blob/pom.xml
+++ b/components/camel-azure/camel-azure-storage-blob/pom.xml
@@ -33,6 +33,7 @@
     <description>Camel Azure Blob Storage Service Component</description>
 
     <properties>
+        <skipITs>true</skipITs>
     </properties>
 
     <dependencies>
@@ -123,4 +124,30 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <profiles>
+        <profile>
+            <!-- Localstack container is only available for x86 64 and ARM 64 -->
+            <id>x86</id>
+            <activation>
+                <os>
+                    <arch>amd64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
+        <profile>
+            <id>Arm</id>
+            <activation>
+                <os>
+                    <arch>aarch64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
+    </profiles>
 </project>


[camel] 03/04: (chores) camel-azure-storage-queue: disable tests on non-x86 architectures

Posted by or...@apache.org.
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 efced319acd6ddbb9d68df2583f6f2aa8ac2b7e0
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 16 08:40:27 2023 +0200

    (chores) camel-azure-storage-queue: disable tests on non-x86 architectures
---
 .../camel-azure/camel-azure-storage-queue/pom.xml  | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/components/camel-azure/camel-azure-storage-queue/pom.xml b/components/camel-azure/camel-azure-storage-queue/pom.xml
index 306bad2fd47..1210514128f 100644
--- a/components/camel-azure/camel-azure-storage-queue/pom.xml
+++ b/components/camel-azure/camel-azure-storage-queue/pom.xml
@@ -33,6 +33,7 @@
     <description>Camel Azure Storage Queue Service Component</description>
 
     <properties>
+        <skipITs>true</skipITs>
     </properties>
 
     <dependencies>
@@ -102,4 +103,30 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <profiles>
+        <profile>
+            <!-- Localstack container is only available for x86 64 and ARM 64 -->
+            <id>x86</id>
+            <activation>
+                <os>
+                    <arch>amd64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
+        <profile>
+            <id>Arm</id>
+            <activation>
+                <os>
+                    <arch>aarch64</arch>
+                </os>
+            </activation>
+            <properties>
+                <skipITs>false</skipITs>
+            </properties>
+        </profile>
+    </profiles>
 </project>