Skip to content

Commit

Permalink
build: increase stack size
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <[email protected]>
  • Loading branch information
manticore-projects committed Feb 1, 2025
1 parent 29a63a2 commit b1be726
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@main
- name: Run build with Gradle Wrapper
run: FLOATING_TOC=false ./gradlew --no-build-cache clean xmldoc sphinx
run: FLOATING_TOC=false ./gradlew xmldoc sphinx
- name: Deploy
uses: actions/configure-pages@main
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx4G -Xss2m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError
org.gradle.jvmargs=-Xmx4G -Xss4m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError

org.gradle.caching=true

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@
<useStandardDocletOptions>true</useStandardDocletOptions>
<maxmemory>2g</maxmemory>
<minmemory>800m</minmemory>
<additionalJOptions>-J-Xss2m</additionalJOptions>
<additionalJOptions>-J-Xss4m</additionalJOptions>
</configuration>
<goals>
<goal>jar</goal>
Expand Down Expand Up @@ -357,7 +357,7 @@
<argLine>
--add-opens=java.base/java.lang=ALL-UNNAMED
--add-opens=java.base/java.util=ALL-UNNAMED
-Xmx2G -Xms512m -Xss2m
-Xmx2G -Xms800m -Xss4m
</argLine>
</configuration>
</plugin>
Expand Down Expand Up @@ -435,7 +435,7 @@
<version>3.0.0-M7</version>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory>
<argLine>-Xmx2G -Xms512m -Xss2m</argLine>
<argLine>-Xmx2G -Xms800m -Xss4m</argLine>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit b1be726

Please sign in to comment.