This is an automated email from the ASF dual-hosted git repository.
etudenhoefner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new d255c87b00 Build: Enable the Gradle build cache (#10602)
d255c87b00 is described below
commit d255c87b00c8ca422a1d32a33b3a9cfe2f04cea2
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Jul 3 14:39:08 2024 +0200
Build: Enable the Gradle build cache (#10602)
---
gradle.properties | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gradle.properties b/gradle.properties
index f593e700fc..c6b8dec17b 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -24,5 +24,12 @@ systemProp.defaultSparkVersions=3.5
systemProp.knownSparkVersions=3.3,3.4,3.5
systemProp.defaultScalaVersion=2.12
systemProp.knownScalaVersions=2.12,2.13
+# enable the Gradle build cache - speeds up builds!
+org.gradle.caching=true
+# enable Gradle parallel builds
org.gradle.parallel=true
+# configure only necessary Gradle tasks
+org.gradle.configureondemand=true
+# explicitly disable the configuration cache
+org.gradle.configuration-cache=false
org.gradle.jvmargs=-Xmx1024m