Skip to content

Commit e330dcf

Browse files
authored
Enable Gradle build and configuration caching (#8669)
Enabling `org.gradle.caching` allows Gradle to reuse task outputs from previous builds, significantly reducing build times for incremental builds. Enabling `org.gradle.configuration-cache` caches the result of the configuration phase, skipping the evaluation of the build script when no configuration changes are detected. These optimizations reduced local build verification time from ~1m 7s to ~46s. Thanks for your contribution! Please replace this text with a description of what this PR is changing or adding and why, list any relevant issues, and review the contribution guidelines below.
1 parent 5d50636 commit e330dcf

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ javaVersion=21
1313
kotlin.stdlib.default.dependency=false
1414
org.gradle.parallel=true
1515
org.gradle.jvmargs=-Xms1024m -Xmx4048m
16+
17+
org.gradle.caching=true
18+
org.gradle.configuration-cache=true

0 commit comments

Comments
 (0)