From 158f59ab88c779872859eddf85cc32e207afd7a1 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 22 Nov 2023 00:26:40 +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 028b7bc..80d7795 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1 +1,7 @@ -rootProject.name = "revanced-cli" \ No newline at end of file +rootProject.name = "revanced-cli" + +buildCache { + local { + isEnabled = !System.getenv().containsKey("CI") + } +}