From 253d5e34994ddd028d8ad239f1ac7891414f2260 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Fri, 20 Nov 2020 08:36:17 -0800 Subject: [PATCH] Bump max heap size in ci I have noticed that sbt runs better on my computer with 2G of heap. Assuming we have that much memory on github actions, it seems like a good idea to increase it there as well. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa302d0db..59d895555 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: jobtype: 5 runs-on: ${{ matrix.os }} env: - JAVA_OPTS: -Xms800M -Xmx800M -Xss6M -XX:ReservedCodeCacheSize=128M -server -Dsbt.io.virtual=false -Dfile.encoding=UTF-8 + JAVA_OPTS: -Xms800M -Xmx2G -Xss6M -XX:ReservedCodeCacheSize=128M -server -Dsbt.io.virtual=false -Dfile.encoding=UTF-8 SCALA_212: 2.12.12 SCALA_213: 2.13.1 UTIL_TESTS: utilCache/test;utilControl/test;utilInterface/test;utilLogging/test;utilPosition/test;utilRelation/test;utilScripted/test;utilTracking/test