You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2023/06/27 13:04:20 UTC

[camel-quarkus] 03/03: Workaround heap out of memory failures on GitHub actions

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

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

commit 2c24b19ce4ab9cc46a9b1dc89583395d66512332
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Tue Jun 27 09:52:17 2023 +0200

    Workaround heap out of memory failures on GitHub actions
---
 .../src/main/resources/application.properties                          | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
index 4f459399c3..3b313fc38d 100644
--- a/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
+++ b/integration-test-groups/cxf-soap/cxf-soap-ws-security-client/src/main/resources/application.properties
@@ -21,3 +21,6 @@ quarkus.native.resources.includes = wsdl/*.wsdl
 # do everything with named parameter sets so that it works in the grouped module
 quarkus.cxf.codegen.wsdl2java.security-client.includes = wsdl/WssCalculatorService.wsdl
 quarkus.cxf.codegen.wsdl2java.security-client.additional-params = -wsdlLocation,classpath:wsdl/WssCalculatorService.wsdl
+
+# Workaround heap OOMs on GitHub actions
+quarkus.native.native-image-xmx = 4g
\ No newline at end of file