From f01a8a8eec319b3d753db6e244456e931233b765 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Thu, 26 Mar 2026 13:05:44 +0100 Subject: [PATCH] Enable remote build cache Enable the Develocity remote build cache for all builds, with push limited to CI. This allows developers to reuse cached outputs from CI builds, reducing local build times. --- settings.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index c9dba9cf042..77624cde525 100644 --- a/settings.gradle +++ b/settings.gradle @@ -44,7 +44,8 @@ buildCache { } remote(develocity.buildCache) { - enabled = false + enabled = true + push = isCI } }