From 74b450b3ae435d47fea6fb7d5222f35793aafba0 Mon Sep 17 00:00:00 2001 From: marhali Date: Thu, 24 Apr 2025 21:55:23 +0200 Subject: [PATCH] fix: OOM exception during verifyPlugin CI run --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 08e931d..4eb6ecc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -47,6 +47,9 @@ dependencies { // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace. plugins(providers.gradleProperty("platformPlugins").map { it.split(',') }) + // Workaround to fix OOM exception during CI run + pluginVerifier(version="1.383") + testFramework(TestFrameworkType.Platform) } }