mirror of https://github.com/sbt/sbt.git
Disable parallel execution
This commit is contained in:
parent
a3eb9fd1a2
commit
1a11fd86a3
|
|
@ -19,6 +19,7 @@ def commonSettings: Seq[Setting[_]] = Seq(
|
||||||
mimaPreviousArtifacts := Set(), // Some(organization.value %% moduleName.value % "1.0.0"),
|
mimaPreviousArtifacts := Set(), // Some(organization.value %% moduleName.value % "1.0.0"),
|
||||||
publishArtifact in Compile := true,
|
publishArtifact in Compile := true,
|
||||||
publishArtifact in Test := false,
|
publishArtifact in Test := false,
|
||||||
|
parallelExecution in Test := false,
|
||||||
commands += Command.command("scalafmtCheck") { state =>
|
commands += Command.command("scalafmtCheck") { state =>
|
||||||
sys.process.Process("git diff --name-only --exit-code").! match {
|
sys.process.Process("git diff --name-only --exit-code").! match {
|
||||||
case 0 => // ok
|
case 0 => // ok
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue