Skip to content

Commit

Permalink
Increase max heap size of Native Image builder to match Quarkus' CI
Browse files Browse the repository at this point in the history
Since quarkusio/quarkus#43862 the quarkus
nightly builds have started failing (stopped by the watchdog) in the
analysis phase of the micrometer-prometheus integration test. The reason
appears to be an increase in the memory usage of the Native Image
builder due to the aforementioned change.

Since Quarkus CI is already using 6g as the max heap size. It makes
sense to align this workflow with that limit.
  • Loading branch information
zakkak committed Oct 29, 2024
1 parent 8a88c44 commit 71cfd47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/quarkus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ env:
DB_NAME: hibernate_orm_test
DB_PASSWORD: hibernate_orm_test
DB_USER: hibernate_orm_test
NATIVE_TEST_MAVEN_ARGS: "-Dtest-containers -Dstart-containers -Dquarkus.native.native-image-xmx=5g -Dnative -Dnative.surefire.skip -Dformat.skip -Dno-descriptor-tests install -DskipDocs -Dquarkus.native.container-build=false"
NATIVE_TEST_MAVEN_ARGS: "-Dtest-containers -Dstart-containers -Dquarkus.native.native-image-xmx=6g -Dnative -Dnative.surefire.skip -Dformat.skip -Dno-descriptor-tests install -DskipDocs -Dquarkus.native.container-build=false"
QUARKUS_JAVA_VERSION: 17 # Use Java 17 to build Quarkus as that's the lowest supported JDK version currently
QUARKUS_PATH: ${{ github.workspace }}/quarkus

Expand Down

0 comments on commit 71cfd47

Please sign in to comment.