From 147951f39de8f93eba6c7b0b7e6e5c9d2bce32e7 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Tue, 22 Jun 2021 14:13:22 +0200 Subject: ci: Optimize Gradle build performance in Github Actions This change updates the Github Actions Gradle workflows in order to improve the runtime performance of these workflows. We have now enabled build caching as well as parallel builds to speed up the build process. Moreover, we now cache the Gradle wrapper. --- gradle.properties | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index 52648593..06c56148 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,3 +22,6 @@ # For Dokka https://github.com/Kotlin/dokka/issues/1405 org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G + +org.gradle.parallel=true +org.gradle.caching=true -- cgit v1.2.3