From 6a90b9da2f3f4f51fbb20df9d4ba9c3d325f00e0 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Mon, 13 Nov 2023 23:09:19 +0100 Subject: [PATCH] specify Xmx1g as min requirement for gradle to build the project --- gradle.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gradle.properties b/gradle.properties index 9d40057b9d..290b6c1d71 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,3 +3,6 @@ kotlin.code.style=official # com.github.vlsi.gradle-extensions prints only failing or slow test results slowTestLogThreshold=500 slowSuiteLogThreshold=5000 + +# the project requires at the following MB to not run into OOM in github actions +org.gradle.jvmargs=-Xmx1g