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

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit 5b13646cc22a9c162dc2b7f7d49f947d347932fc
Author: James Netherton <[email protected]>
AuthorDate: Thu Nov 16 09:43:33 2023 +0000

    Disable cluster-leader-election native build on GitHub CI
---
 cluster-leader-election/pom.xml | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml
index de68010..549c465 100644
--- a/cluster-leader-election/pom.xml
+++ b/cluster-leader-election/pom.xml
@@ -257,7 +257,6 @@
     </build>
 
     <profiles>
-        <!-- TODO: https://github.com/apache/camel-quarkus/issues/5447
         <profile>
             <id>native</id>
             <activation>
@@ -290,7 +289,20 @@
                 </plugins>
             </build>
         </profile>
-        -->
+        <!-- TODO: https://github.com/apache/camel-quarkus/issues/5515 -->
+        <profile>
+            <id>native-disabled-github-ci</id>
+            <activation>
+                <property>
+                    <name>env.CI</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <quarkus.package.type>fast-jar</quarkus.package.type>
+                <skipITs>true</skipITs>
+            </properties>
+        </profile>
         <profile>
             <id>kubernetes</id>
             <activation>

Reply via email to