From 8b92a097dd3cf1797b7645763a73af8d775fb105 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 22 Nov 2023 00:26:38 +0100 Subject: [PATCH] build: Use Gradle build cache --- settings.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 45c24f8ff..f28af0545 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,3 +1,9 @@ include("dummy") rootProject.name = "revanced-patches" + +buildCache { + local { + isEnabled = !System.getenv().containsKey("CI") + } +}