Try travis with 3 cores and 725M per instance

This commit is contained in:
jvican 2017-05-02 16:40:24 +02:00
parent 7519e63f50
commit 628517e60c
No known key found for this signature in database
GPG Key ID: 42DAFA0F112E8050
1 changed files with 2 additions and 2 deletions

View File

@ -352,7 +352,7 @@ def otherRootSettings =
scriptedUnpublished := scriptedUnpublishedTask.evaluated,
scriptedSource := (sourceDirectory in sbtProj).value / "sbt-test",
// scriptedPrescripted := { addSbtAlternateResolver _ },
scriptedLaunchOpts := List("-Xmx1024M", "-Xms512M"),
scriptedLaunchOpts := List("-Xmx725M", "-Xms512M"),
publishAll := { val _ = (publishLocal).all(ScopeFilter(inAnyProject)).value },
publishLocalBinAll := { val _ = (publishLocalBin).all(ScopeFilter(inAnyProject)).value },
aggregate in bintrayRelease := false
@ -362,7 +362,7 @@ def otherRootSettings =
()
},
scriptedLaunchOpts := {
List("-Xmx1024M",
List("-Xmx725M",
"-Xms512M",
"-Dsbt.override.build.repos=true",
s"""-Dsbt.repository.config=${scriptedSource.value / "repo.config"}""")