Skip to content

Commit

Permalink
Bump initial heap size to 6GB
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed May 1, 2022
1 parent 36ea27e commit a469f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Run Cuis-Smalltalk tests on TruffleSqueak in native mode
run: |
mx.trufflesqueak/utils.sh download-cuis-test-image
trufflesqueak --native --headless --experimental-options --engine.CompilationFailureAction=ExitVM --engine.TreatPerformanceWarningsAsErrors=all --engine.CompilationStatistics images/Cuis6.0-????.image -s src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/runCuisTests.st
trufflesqueak --native --headless --experimental-options --smalltalk.resource-summary=true --engine.CompilationFailureAction=ExitVM --engine.TreatPerformanceWarningsAsErrors=all --engine.CompilationStatistics images/Cuis6.0-????.image -s src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/runCuisTests.st
if: ${{ matrix.os == 'macos-latest' && matrix.java == 17 }}
- name: Clone Graal.js repository
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion mx.trufflesqueak/mx_trufflesqueak.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
BASE_VM_ARGS_TESTING = BASE_VM_ARGS[:]
BASE_VM_ARGS_TESTING.extend([
# Tweak GC for GitHub Actions
'-Xms4G', # Initial heap size
'-Xms6G', # Initial heap size
'-XX:MetaspaceSize=32M', # Initial size of Metaspaces
])

Expand Down

0 comments on commit a469f74

Please sign in to comment.