You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ba...@apache.org on 2021/10/18 23:41:37 UTC

[systemds] 01/02: [MINOR] Change github actions tests runner memory allocation

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

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

commit 797c0e4a1e557f63bf2b902955077dd3ef01a59b
Author: baunsgaard <ba...@tugraz.at>
AuthorDate: Tue Oct 19 01:37:31 2021 +0200

    [MINOR] Change github actions tests runner memory allocation
---
 docker/entrypoint.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index 192c701..706bdbf 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -24,6 +24,8 @@
 
 cd /github/workspace
 
+export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"
+
 log="/tmp/sysdstest.log"
 mvn -ntp test-compile 2>&1 | grep -E "BUILD|Total time:|---|Building SystemDS"
 mvn -ntp test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=$1 2>&1 | grep -v "already exists in destination." | tee $log