From 00ce0d7fc07904fe912e895c8251bf47fa147f54 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Fri, 2 Jan 2026 14:45:19 -0600 Subject: [PATCH] feat: Enable local build cache (#4117) --- settings.gradle.kts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 8fb795d2d..ee9facdaa 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -77,6 +77,21 @@ develocity { } publishing.onlyIf { false } } + buildCache { + local { + isEnabled = true + } +// remote(HttpBuildCache::class.java) { +// isAllowInsecureProtocol = true +// // Replace with your selfhosted instance address +// // see: https://docs.gradle.org/current/userguide/build_cache.html#sec:build_cache_setup_http_backend +// url = uri("http://:5071/cache/") +// +// // Allow this machine to upload results to the cache +// isPush = true +// +// } + } } @Suppress("UnstableApiUsage")