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:
Ethan Atkins 2020-08-19 11:25:39 -07:00
parent b2d7ba3aec
commit f4d72c8d0f
1 changed files with 1 additions and 1 deletions

View File

@ -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)