GradleBuildCachePerformanceBuildCacheLocalInfo
data class GradleBuildCachePerformanceBuildCacheLocalInfo( @Json(name = "isEnabled") val isEnabled: Boolean, @Json(name = "isPushEnabled") val isPushEnabled: Boolean? = null, @Json(name = "isDisabledDueToError") val isDisabledDueToError: Boolean? = null, @Json(name = "directory") val directory: String? = null)
Information about the local build cache used in the build.
Parameters
isEnabled
Indicates whether the local build cache is enabled.
isPushEnabled
Indicates whether pushing to the local build cache is enabled. null
if the local build cache is disabled.
isDisabledDueToError
Indicates whether the local cache is disabled due to an error occurring in loading or storing local build cache entries. null
if the local build cache is disabled.
directory
Location of the local build cache. Can be relative or absolute depending on its value. null
if the local build cache is disabled.