mirror of https://github.com/sbt/sbt.git
Clean Zinc Cache for 'Compile / clean', 'Test / clean'
This commit is contained in:
parent
3529e20279
commit
e23419efed
|
|
@ -928,7 +928,20 @@ object Defaults extends BuildCommon {
|
||||||
tastyFiles.map(_.getAbsoluteFile)
|
tastyFiles.map(_.getAbsoluteFile)
|
||||||
} else Nil
|
} else Nil
|
||||||
}.value,
|
}.value,
|
||||||
clean := (compileOutputs / clean).value,
|
clean := {
|
||||||
|
val _ = (compileOutputs / clean).value
|
||||||
|
val setup = compileIncSetup.value
|
||||||
|
try {
|
||||||
|
val store = AnalysisUtil.staticCachedStore(
|
||||||
|
analysisFile = setup.cacheFile.toPath,
|
||||||
|
useTextAnalysis = !enableBinaryCompileAnalysis.value,
|
||||||
|
useConsistent = enableConsistentCompileAnalysis.value,
|
||||||
|
)
|
||||||
|
store.clearCache()
|
||||||
|
} catch {
|
||||||
|
case NonFatal(_) => ()
|
||||||
|
}
|
||||||
|
},
|
||||||
earlyOutputPing := Def.promise[Boolean],
|
earlyOutputPing := Def.promise[Boolean],
|
||||||
compileProgress := {
|
compileProgress := {
|
||||||
val s = streams.value
|
val s = streams.value
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue