You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bi...@apache.org on 2023/06/19 14:16:41 UTC

[storm] branch master updated: [STORM-3923] Increase MAVEN_OPTS max memory setting to 2gb (#3545)

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

bipinprasad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new 0fc921dc4 [STORM-3923] Increase MAVEN_OPTS max memory setting to 2gb (#3545)
0fc921dc4 is described below

commit 0fc921dc4d55568851b774caffdc21b3ed70bf14
Author: Bipin Prasad <bi...@apache.org>
AuthorDate: Mon Jun 19 07:16:35 2023 -0700

    [STORM-3923] Increase MAVEN_OPTS max memory setting to 2gb (#3545)
---
 dev-tools/gitact/gitact-script.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/gitact/gitact-script.sh b/dev-tools/gitact/gitact-script.sh
index 69203b146..c3e1a309f 100755
--- a/dev-tools/gitact/gitact-script.sh
+++ b/dev-tools/gitact/gitact-script.sh
@@ -51,7 +51,7 @@ fi
 # We should be concerned that Travis CI could be very slow because it uses VM
 export STORM_TEST_TIMEOUT_MS=150000
 # Github Action Runner only has 7GB of memory, lets use 1.5GB for build, with enough stack to run tests
-export MAVEN_OPTS="-Xmx1536m"
+export MAVEN_OPTS="-Xmx2048m"
 
 mvn --batch-mode test -fae -Pnative,all-tests,examples,externals -Prat -pl "$TEST_MODULES"
 BUILD_RET_VAL=$?