Skip to content

Commit 6790663

Browse files
committed
[CI] Print stacktraces to console
1 parent 2daa0ed commit 6790663

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/config.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ defaults: &defaults
1212
working_directory: ~/repo
1313
environment:
1414
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
15+
# 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
1623
1724
# Runners for OpenJDK 8 and 11
1825

0 commit comments

Comments
 (0)