From 2e54af8f82d47c9c9240e5bf5446789f5af8b311 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 22 Nov 2023 00:26:39 +0100 Subject: [PATCH] build: Use Gradle build cache --- settings.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 10b30c4..1df3126 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1 +1,7 @@ -rootProject.name = "revanced-library" \ No newline at end of file +rootProject.name = "revanced-library" + +buildCache { + local { + isEnabled = !System.getenv().containsKey("CI") + } +}