From b572029ba7c24a95a37359027c85492eb3f48163 Mon Sep 17 00:00:00 2001 From: Nik Clayton Date: Fri, 2 Feb 2024 16:07:03 +0100 Subject: [PATCH] ci: Enable Gradle configuration cache on CI (#409) Gradle configuration currently takes ~ 25s per invocation on CI, this should hopefully reduce that significantly. --- .github/ci-gradle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ci-gradle.properties b/.github/ci-gradle.properties index 9cb9fc93b..a810452a5 100644 --- a/.github/ci-gradle.properties +++ b/.github/ci-gradle.properties @@ -19,6 +19,7 @@ org.gradle.daemon=false org.gradle.parallel=true org.gradle.workers.max=2 +org.gradle.configuration-cache=true kotlin.incremental=false kotlin.compiler.execution.strategy=in-process