You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/07/28 11:39:16 UTC

[camel-quarkus] 01/02: Configure native-image-xmx for kubernetes and master-openshift native tests

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.git

commit d09905e5d2e9d157ccd2312e1e5d00f367630fa0
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Jul 28 07:08:38 2023 +0100

    Configure native-image-xmx for kubernetes and master-openshift native tests
---
 integration-tests/kubernetes/pom.xml       | 8 +++++++-
 integration-tests/master-openshift/pom.xml | 7 ++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml
index 7b6d9c68c7..2b476d989e 100644
--- a/integration-tests/kubernetes/pom.xml
+++ b/integration-tests/kubernetes/pom.xml
@@ -75,7 +75,13 @@
 
 
     <profiles>
-       <profile>
+        <profile>
+            <id>ci</id>
+            <properties>
+                <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
+            </properties>
+        </profile>
+        <profile>
             <id>native</id>
             <activation>
                 <property>
diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml
index a87b5f371a..0a80665bad 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -112,7 +112,12 @@
     </dependencies>
 
     <profiles>
-
+        <profile>
+            <id>ci</id>
+            <properties>
+                <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
+            </properties>
+        </profile>
         <profile>
             <id>full</id>
             <activation>