mirror of https://github.com/sbt/sbt.git
Disable pipelining in CI
sbt 1.4.0-M2 failed to build util-tracking in 2.13.3 in CI with pipelining enabled. It works fine with pipelining disabled.
This commit is contained in:
parent
b2d7ba3aec
commit
f4d72c8d0f
|
|
@ -14,7 +14,7 @@ ThisBuild / version := {
|
|||
ThisBuild / scalafmtOnCompile := !(Global / insideCI).value
|
||||
ThisBuild / Test / scalafmtOnCompile := !(Global / insideCI).value
|
||||
ThisBuild / turbo := true
|
||||
ThisBuild / SettingKey[Boolean]("usePipelining") := true
|
||||
ThisBuild / SettingKey[Boolean]("usePipelining") := !(Global / insideCI).value
|
||||
|
||||
val excludeLint = SettingKey[Set[Def.KeyedInitialize[_]]]("excludeLintKeys")
|
||||
Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty)
|
||||
|
|
|
|||
Loading…
Reference in New Issue