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

davsclaus 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 89e5c894b0e Run on more platforms where protobuf can compile
89e5c894b0e is described below

commit 89e5c894b0e3d839da28e6d607969894b93f10d5
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jun 13 14:07:31 2024 +0200

    Run on more platforms where protobuf can compile
---
 components/camel-protobuf/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-protobuf/pom.xml 
b/components/camel-protobuf/pom.xml
index 5ae40ace129..8169d029ae6 100644
--- a/components/camel-protobuf/pom.xml
+++ b/components/camel-protobuf/pom.xml
@@ -74,9 +74,9 @@
               If the platform doesn't support, the protobuf test code 
generation, their
               assembly and launch will be skipped
               Supported platforms are:
-              - Linux (x86 32 and 64-bit)
-              - Windows (x86 32 and 64-bit)
-              - OSX (x86 32 and 64-bit)
+              - Linux: x86_32, x86_64, aarch_64, ppcle_64 & s390_64
+              - Windows: x86_32 & x86_64
+              - OSX: x86_64 & aarch_64
             -->
             <plugin>
                 <groupId>org.codehaus.gmavenplus</groupId>
@@ -91,7 +91,7 @@
                         <configuration>
                             <scripts>
                                 <script><![CDATA[
-                  
project.properties['skipTests']=project.properties['os.detected.classifier'].matches('^.*?(linux|windows|osx)-x86.*$')
 ? 'false' : 'true';
+                  
project.properties['skipTests']=project.properties['os.detected.classifier'].matches('^(linux-(x86_(32|64)|aarch_64|ppcle_64|s390_64)|windows-x86_(32|64)|osx-(x86_64|aarch_64))$')
 ? 'false' : 'true';
                 ]]></script>
                             </scripts>
                         </configuration>

Reply via email to