We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a843d commit 37fbf32Copy full SHA for 37fbf32
1 file changed
.circleci/config.yml
@@ -17,7 +17,10 @@ jobs:
17
working_directory: ~/repo/de.peeeq.wurstscript
18
19
environment:
20
- GRADLE_OPTS: -Dorg.gradle.parallel=false -Dorg.gradle.workers.max=2
+ # With --no-daemon, GRADLE_OPTS applies to the build JVM itself.
21
+ # Cap it at 256 MB so the forked test JVM (-Xmx2g) + JaCoCo agent overhead
22
+ # fit within the medium container's 4 GB.
23
+ GRADLE_OPTS: -Dorg.gradle.parallel=false -Dorg.gradle.workers.max=2 -Xmx256m
24
TERM: dumb
25
26
steps:
0 commit comments