Validate compile in multi-jvm (#26400)

* New validateCompile task for multi jvm to run in travis
This commit is contained in:
Christopher Batey 2019-03-12 11:43:02 +00:00 committed by Patrik Nordwall
parent 6394b979bd
commit 2e247001f7
3 changed files with 12 additions and 4 deletions

View file

@ -534,7 +534,7 @@ def commandValue(p: Project, externalTest: Option[Project] = None) = {
val test = externalTest.getOrElse(p)
val optionalMima = if (p.id.endsWith("-typed")) "" else s";${p.id}/mimaReportBinaryIssues"
val optionalExternalTestFormat = externalTest.map(t => s";${t.id}/scalafmtAll").getOrElse("")
s";${p.id}/scalafmtAll$optionalExternalTestFormat;${test.id}/test:compile$optionalMima;${docs.id}/paradox"
s";${p.id}/scalafmtAll$optionalExternalTestFormat;${test.id}/test:compile$optionalMima;${docs.id}/paradox;${test.id}:validateCompile"
}
addCommandAlias("allActor", commandValue(actor, Some(actorTests)))
addCommandAlias("allRemote", commandValue(remote, Some(remoteTests)))