Skip to content

Commit b1be726

Browse files
build: increase stack size
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent 29a63a2 commit b1be726

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Gradle
2222
uses: gradle/actions/setup-gradle@main
2323
- name: Run build with Gradle Wrapper
24-
run: FLOATING_TOC=false ./gradlew --no-build-cache clean xmldoc sphinx
24+
run: FLOATING_TOC=false ./gradlew xmldoc sphinx
2525
- name: Deploy
2626
uses: actions/configure-pages@main
2727
- name: Upload artifact

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Specifies the JVM arguments used for the daemon process.
22
# The setting is particularly useful for tweaking memory settings.
3-
org.gradle.jvmargs=-Xmx4G -Xss2m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError
3+
org.gradle.jvmargs=-Xmx4G -Xss4m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError
44

55
org.gradle.caching=true
66

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@
315315
<useStandardDocletOptions>true</useStandardDocletOptions>
316316
<maxmemory>2g</maxmemory>
317317
<minmemory>800m</minmemory>
318-
<additionalJOptions>-J-Xss2m</additionalJOptions>
318+
<additionalJOptions>-J-Xss4m</additionalJOptions>
319319
</configuration>
320320
<goals>
321321
<goal>jar</goal>
@@ -357,7 +357,7 @@
357357
<argLine>
358358
--add-opens=java.base/java.lang=ALL-UNNAMED
359359
--add-opens=java.base/java.util=ALL-UNNAMED
360-
-Xmx2G -Xms512m -Xss2m
360+
-Xmx2G -Xms800m -Xss4m
361361
</argLine>
362362
</configuration>
363363
</plugin>
@@ -435,7 +435,7 @@
435435
<version>3.0.0-M7</version>
436436
<configuration>
437437
<outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory>
438-
<argLine>-Xmx2G -Xms512m -Xss2m</argLine>
438+
<argLine>-Xmx2G -Xms800m -Xss4m</argLine>
439439
</configuration>
440440
</plugin>
441441
<plugin>

0 commit comments

Comments
 (0)