Skip to content

Commit

Permalink
Raise Xmx used by Many extensions module & drop Xmx from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik authored and rsvoboda committed Oct 31, 2024
1 parent c352055 commit 153cd16
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/quarkus-ecosystem-test
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -e
mvn -fae -V -B -s .github/mvn-settings.xml -fae clean verify -P $MAVEN_PROFILES -Dts.quarkus.cli.cmd="${HOME}/.jbang/bin/quarkus"

# run the tests on Native
mvn -fae -V -B -s .github/mvn-settings.xml -fae clean verify -P $MAVEN_PROFILES -Dnative -Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=5g -Dts.quarkus.cli.cmd="${HOME}/.jbang/bin/quarkus"
mvn -fae -V -B -s .github/mvn-settings.xml -fae clean verify -P $MAVEN_PROFILES -Dnative -Dquarkus.native.container-build=true -Dts.quarkus.cli.cmd="${HOME}/.jbang/bin/quarkus"
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ jobs:
- name: Build with Maven
run: |
mvn -fae -V -B --no-transfer-progress -fae \
-Dquarkus.native.native-image-xmx=5g \
-Dinclude.quarkus-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli" \
${{ matrix.module-mvn-args }} clean verify -Dnative -am -DexcludedGroups=long-running
- name: Detect flaky tests
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ jobs:
run: |
mvn -fae -V -B --no-transfer-progress -s .github/mvn-settings.xml -P ${{ matrix.profiles }} -fae clean verify -Dnative \
-Dquarkus.native.builder-image=quay.io/quarkus/${{ matrix.image }} \
-Dquarkus.native.native-image-xmx=5g \
-Dinclude.quarkus-cli-tests -Dts.quarkus.cli.cmd="${PWD}/quarkus-dev-cli"
- name: Zip Artifacts
if: failure()
Expand Down
3 changes: 2 additions & 1 deletion super-size/many-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<artifactId>many-extensions</artifactId>
<name>Quarkus QE TS: Many extensions</name>
<properties>
<quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
<!-- set to 7g after we experienced https://github.com/quarkusio/quarkus/issues/44216 -->
<quarkus.native.native-image-xmx>7g</quarkus.native.native-image-xmx>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit 153cd16

Please sign in to comment.