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 2020/09/02 11:56:28 UTC

[camel-quarkus] 13/13: Reduce the amount of RAM spent by the AS2 itest

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

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

commit f9ea1b76f4a0947a769ab395c125ae5665e76599
Author: Lukas Lowinger <ll...@redhat.com>
AuthorDate: Wed Sep 2 11:59:40 2020 +0200

    Reduce the amount of RAM spent by the AS2 itest
---
 .github/workflows/ci-build.yaml | 3 +--
 integration-tests/as2/pom.xml   | 6 ++++++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index fc6e0e4..cc34476 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -300,8 +300,7 @@ jobs:
           IFS=,
           eval ./mvnw -V -ntp ${BRANCH_OPTIONS} clean verify \
             -Dformatter.skip -Dimpsort.skip -Denforce=false \
-            -Dnative \
-            -Ddocker \
+            -Pnative,docker,ci \
             -pl "${modules[*]}"
       - name: Fail if there are uncommitted changes
         shell: bash
diff --git a/integration-tests/as2/pom.xml b/integration-tests/as2/pom.xml
index 16e4a81..2551f81 100644
--- a/integration-tests/as2/pom.xml
+++ b/integration-tests/as2/pom.xml
@@ -140,6 +140,12 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <id>ci</id>
+            <properties>
+                <quarkus.native.native-image-xmx>6g</quarkus.native.native-image-xmx>
+            </properties>
+        </profile>
     </profiles>
 
 </project>