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.
1 parent ba67e55 commit 6ade676Copy full SHA for 6ade676
project/Build.scala
@@ -8,7 +8,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("-Xmx1100m")
12
13
val JENKINS_BUILD = "dotty.jenkins.build"
14
@@ -126,7 +126,7 @@ object DottyBuild extends Build {
126
127
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