Skip to content

Commit

Permalink
OPHYK-212 Remove unnecessary jvm memory parameters on CI
Browse files Browse the repository at this point in the history
Caused the following error on CI:

    OpenJDK 64-Bit Server VM warning: INFO: os::commit_memory(0x0000000080000000, 2147483648, 0) failed; error='Not enough space' (errno=12)
  • Loading branch information
rce committed Dec 10, 2024
1 parent 087f9c5 commit cd51c4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/ci/run-cypress-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function start_ui {
function start_server {
cd "${repo}"
./gradlew clean build -x test
java -jar -Xms2g -Xmx2g \
java -jar \
-Dspring.config.location=classpath:application.properties,classpath:application-test-envs.properties \
-Dspring.profiles.active=dev \
-Dspring.flyway.enabled=true \
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/run-playwright-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function start_ui {
function start_server {
cd "${repo}"
./gradlew clean build -x test
java -jar -Xms2g -Xmx2g \
java -jar \
-Dspring.config.location=classpath:application.properties,classpath:application-test-envs.properties \
-Dspring.profiles.active=dev \
-Dspring.flyway.enabled=true \
Expand Down

0 comments on commit cd51c4d

Please sign in to comment.