Skip to content

Commit 862a9a4

Browse files
authored
Build Aarch64 image with page size of 64k to Increase Compatibility (#506)
* fixing pagesize to 64k and add release notes * [Gradle Release Plugin] - new version commit: '3.23.0-snapshot'.
1 parent 1fb06c5 commit 862a9a4

3 files changed

+5
-2
lines changed

Dockerfile.builder.linux-aarch64

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY ./build/artifacts/native-image-source/ /app/build
1818

1919
ENV JAVA_TOOL_OPTIONS='-Djdk.lang.Process.launchMechanism=fork'
2020
RUN uname -m && ls -lha &&\
21-
native-image -Djdk.lang.Process.launchMechanism=fork -J-Djdk.lang.Process.launchMechanism=fork \
21+
native-image -H:PageSize=65536 -Djdk.lang.Process.launchMechanism=fork -J-Djdk.lang.Process.launchMechanism=fork \
2222
-jar dns-proxy-server.jar dns-proxy-server
2323

2424
RUN ls -lhS &&\

RELEASE-NOTES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.23.0
2+
* Build Aarch64 image with page size of 64k to Increase Compatibility #505
3+
14
## 3.22.3
25
* Fixing graal-sdk dep binary impacts arm, windows, amd static generation
36
* Fixed Jar release which was broken when at `3.22.0` depending on the JRE vendor

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=3.22.3-snapshot
1+
version=3.23.0-snapshot

0 commit comments

Comments
 (0)