Skip to content

Commit 4161e4d

Browse files
committed
[ci] Fix actions running out of JVM memory.
1 parent cb1dc82 commit 4161e4d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
8484
- name: Run Plugin Verification tasks
85-
run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }}
85+
run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }} --no-daemon
8686

8787
# Collect Plugin Verifier Result
8888
- name: Collect Plugin Verifier Result

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ gradleVersion = 7.6
2626
# Opt-out flag for bundling Kotlin standard library.
2727
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
2828
kotlin.stdlib.default.dependency = false
29+
30+
org.gradle.jvmargs=-Xmx4g -Xms1g

0 commit comments

Comments
 (0)