Skip to content

Commit

Permalink
provide more memory to sbt jobs (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Mar 4, 2024
1 parent 7ce503e commit baedbe6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
uses: coursier/setup-action@v1

- name: Create the Pekko site
run: sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "Javaunidoc/doc; Compile/unidoc; docs/paradox"
run: |-
cp .jvmopts-ci .jvmopts
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "Javaunidoc/doc; Compile/unidoc; docs/paradox"
- name: Run Link Validator
run: cs launch net.runne::site-link-validator:0.2.2 -- scripts/link-validator.conf
4 changes: 2 additions & 2 deletions .jvmopts-ci
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This is used to configure the sbt instance in CI

-XX:+UseG1GC
-Xms3G
-Xmx3G
-Xms4G
-Xmx4G
-Xss2M
-XX:+AlwaysActAsServerClassMachine
-XX:ReservedCodeCacheSize=256m
Expand Down

0 comments on commit baedbe6

Please sign in to comment.