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 <[email protected]> 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
