You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.drone.yml: Give more resources to the JVM used by sbt
sbt runs up to `Runtime.getRuntime.availableProcessors` tasks in
parallel, on our CI that means 40 tasks, compilation tasks are the one
with the biggest footprint and the introduction of
`dotty-library-bootstrapped` and `dotty-compiler-bootstrapped` in this
PR means that sbt can now run more compilation tasks in parallel. To
prevent the JVM from exploding, we increase:
- The max heap size, from 1G to 4G
- The max code cache size, from 240M to 512M
- The max metaspace size, from 256M to 1G
0 commit comments