Skip to content

Commit fe5c7ae

Browse files
committed
Disable buildSearchableOptions task to prevent verification failures and update JVM memory settings for Gradle daemon
1 parent fd05d7d commit fe5c7ae

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@ tasks {
154154
publishPlugin {
155155
dependsOn(patchChangelog)
156156
}
157+
158+
// Disable buildSearchableOptions task to prevent verification failures
159+
buildSearchableOptions {
160+
enabled = false
161+
}
157162
}
158163

159164
intellijPlatformTesting {

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ org.gradle.configuration-cache = true
3131

3232
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
3333
org.gradle.caching = true
34-
34+
# JVM memory settings for Gradle daemon and buildSearchableOptions
35+
org.gradle.jvmargs=-Xmx8g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
3536
# Kotlin compiler memory settings
3637
kotlin.daemon.jvmargs=-Xmx4g
3738

0 commit comments

Comments
 (0)