proper gradle cache

This commit is contained in:
Zoë Gidiere 2023-12-05 19:52:12 -07:00
parent 601d174720
commit e4df8dce1d

View File

@ -39,3 +39,12 @@ pluginManagement {
}
}
}
// settings.gradle.kts
val isCiServer = System.getenv().containsKey("CI")
// Cache build artifacts, so expensive operations do not need to be re-computed
buildCache {
local {
isEnabled = !isCiServer
}
}