Skip to content

Commit

Permalink
Increase native image Xmx to 8g in GH workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jedla97 authored and rsvoboda committed Nov 7, 2024
1 parent bd893b8 commit e51f5ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Test in Native mode
run: |
mvn -fae -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae clean verify -Dnative \
-Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=7g \
-Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=8g \
-Dquarkus.native.builder-image=quay.io/quarkus/${{ matrix.image }}
- name: Zip Artifacts
if: failure()
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
shell: bash
run: |
# Build on Native requires a lot of disk space, for now, we'll run only one module.
mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae clean verify -Dnative -Dquarkus.native.native-image-xmx=7g -pl '003-quarkus-many-extensions'
mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae clean verify -Dnative -Dquarkus.native.native-image-xmx=8g -pl '003-quarkus-many-extensions'
- name: Zip Artifacts
shell: bash
if: failure()
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
MODULES_ARG="${CHANGED// /,}"
mvn -am -fae -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae -pl $MODULES_ARG clean verify -Dnative \
-Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=7g \
-Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=8g \
-Dquarkus.native.builder-image=quay.io/quarkus/${{ matrix.image }}
- name: Zip Artifacts
if: failure()
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
shell: bash
run: |
mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml -fae clean verify -Dnative \
-Dquarkus.native.native-image-xmx=7g \
-Dquarkus.native.native-image-xmx=8g \
-pl '003-quarkus-many-extensions'
- name: Zip Artifacts
shell: bash
Expand Down

0 comments on commit e51f5ae

Please sign in to comment.