Skip to content

Commit

Permalink
add support for alpine aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams committed Oct 11, 2023
1 parent dec16ab commit 06b56db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 21/jdk/alpine/Dockerfile.releases.full
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
aarch64|arm64) \
ESUM=''; \
ESUM='3f8e5b0447d2dd711f12edda611ed1cf9aab4ca53c8fe32fca8fb1e6fee41c12'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_aarch64_alpine-linux_hotspot_21_35.tar.gz'; \
;; \
amd64|x86_64) \
Expand Down
2 changes: 1 addition & 1 deletion 21/jre/alpine/Dockerfile.releases.full
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
aarch64|arm64) \
ESUM=''; \
ESUM='ff4102e2aa0b35f337d579f0d19aff1aa4a10bee9ab0951137affdb50dd8f3e2'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_aarch64_alpine-linux_hotspot_21_35.tar.gz'; \
;; \
amd64|x86_64) \
Expand Down
2 changes: 1 addition & 1 deletion common_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ all_jvms="hotspot"
# Supported arches for each of the os_families
os_families="linux alpine-linux windows"
linux_arches="aarch64 armv7l ppc64le s390x x86_64"
alpine_linux_arches="x86_64"
alpine_linux_arches="aarch64 x86_64"
windows_arches="windows-amd windows-nano"

# All supported packages
Expand Down

0 comments on commit 06b56db

Please sign in to comment.