Skip to content

Commit 7856123

Browse files
authoredAug 21, 2018
3 jvm (#540)
1 parent a759f32 commit 7856123

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎automation/build.sbt‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Test / logBuffered := false
4848

4949
/**
5050
* Control the number of forked JVMs allowed to run at the same time by
51-
* setting the limit on Tags.ForkedTestGroup tag, which is 1 by default.
51+
* setting the limit on Tags.ForkedTestGroup tag, 1 is default.
5252
* Warning: can't set too high (set at 10 would crashes OS)
5353
*/
54-
Global / concurrentRestrictions := Seq(Tags.limit(Tags.ForkedTestGroup, 5))
54+
Global / concurrentRestrictions := Seq(Tags.limit(Tags.ForkedTestGroup, 3))
5555

5656
/**
5757
* Forked JVM options
5858
*/
59-
Test / javaOptions ++= Seq("-Xmx2G")
59+
Test / javaOptions ++= Seq("-Xmx5G")
6060

6161
/**
6262
* copy system properties to forked JVM
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.1.4
1+
sbt.version = 1.2.1

0 commit comments

Comments
 (0)
Please sign in to comment.