We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 806ea74 + acf0535 commit 0ae3ef2Copy full SHA for 0ae3ef2
project/Build.scala
@@ -6,9 +6,7 @@ import scala.reflect.io.Path
6
7
object DottyBuild extends Build {
8
9
- // Currently, this cannot be increased without hitting the maximum amount of memory
10
- // available on the Jenkins VMs
11
- val travisMemLimit = List("-Xmx1100m")
+ val jenkinsMemLimit = List("-Xmx1300m")
12
13
val JENKINS_BUILD = "dotty.jenkins.build"
14
@@ -126,7 +124,7 @@ object DottyBuild extends Build {
126
124
127
125
val travis_build = // propagate if this is a travis build
128
if (sys.props.isDefinedAt(JENKINS_BUILD))
129
- List(s"-D$JENKINS_BUILD=${sys.props(JENKINS_BUILD)}") ::: travisMemLimit
+ List(s"-D$JENKINS_BUILD=${sys.props(JENKINS_BUILD)}") ::: jenkinsMemLimit
130
else
131
List()
132
0 commit comments