Skip to content

Commit f692978

Browse files
committed
Enable parallel configuration caching
According to [Gradle's documentation](https://docs.gradle.org/current/userguide/configuration_cache.html#config_cache:usage:parallel), "Configuration cache storing and loading are done sequentially by default. Parallel storing and loading provide better performance, however not all builds are compatible with it." Our build appears to be compatible, so let's turn this feature on. That being said, I haven't actually noticed a significant change in build times. This feature may affect WALA more in theory than in practice.
1 parent 90350c7 commit f692978

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ dependency.analysis.print.build.health=true
1111

1212
org.gradle.caching=true
1313
org.gradle.configuration-cache=true
14+
org.gradle.configuration-cache.parallel=true
1415
org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
1516
org.gradle.parallel=true
1617

0 commit comments

Comments
 (0)