We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2daa0ed commit 6790663Copy full SHA for 6790663
.circleci/config.yml
@@ -12,7 +12,14 @@ defaults: &defaults
12
working_directory: ~/repo
13
environment:
14
LEIN_ROOT: "true" # we intended to run lein as root
15
- JVM_OPTS: -Xmx3200m # limit the maximum heap size to prevent out of memory errors
+ # JVM_OPTS:
16
+ # - limit the maximum heap size to prevent out of memory errors
17
+ # - don't optimize away any stacktraces
18
+ # - print stacktraces to console
19
+ JVM_OPTS: >
20
+ -Xmx3200m
21
+ -XX:-OmitStackTraceInFastThrow
22
+ -Dclojure.main.report=stderr
23
24
# Runners for OpenJDK 8 and 11
25
0 commit comments