-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eclipse-temurin: add JDK17 additional architectures #10945
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gdams
changed the title
eclipse-temurin: add JDK17 arm64v8 Dockerfiles
eclipse-temurin: add JDK17 arm64v8 and s390x Dockerfiles
Sep 23, 2021
gdams
changed the title
eclipse-temurin: add JDK17 arm64v8 and s390x Dockerfiles
eclipse-temurin: add JDK17 additional architectures
Sep 23, 2021
Diff for 84b219c:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 4a0abdc..a9764fd 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -187,13 +187,15 @@ File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2016
Tags: 17_35-jdk-centos7, 17-jdk-centos7, 17-centos7
-GitCommit: 63defc24ed1b9051b48f6dfc747761a1b88a3b42
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: d066d94f1cfd49219d1efce08c5d4d3649619f9a
Directory: 17/jdk/centos
File: Dockerfile.releases.full
Tags: 17_35-jdk-focal, 17-jdk-focal, 17-focal
SharedTags: 17_35-jdk, 17-jdk, 17, latest
-GitCommit: 63defc24ed1b9051b48f6dfc747761a1b88a3b42
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: d066d94f1cfd49219d1efce08c5d4d3649619f9a
Directory: 17/jdk/ubuntu
File: Dockerfile.releases.full
diff --git a/eclipse-temurin_17-centos7/Dockerfile.releases.full b/eclipse-temurin_17-centos7/Dockerfile.releases.full
index 788356d..7f03221 100644
--- a/eclipse-temurin_17-centos7/Dockerfile.releases.full
+++ b/eclipse-temurin_17-centos7/Dockerfile.releases.full
@@ -29,6 +29,14 @@ ENV JAVA_VERSION jdk-17+35
RUN set -eux; \
ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \
case "${ARCH}" in \
+ aarch64|arm64) \
+ ESUM='e08e6d8c84da28a2c49ccd511f8835c329fbdd8e4faff662c58fa24cca74021d'; \
+ BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_aarch64_linux_hotspot_17_35.tar.gz'; \
+ ;; \
+ ppc64el|powerpc:common64) \
+ ESUM='2e58f76fd332b73f323e47c73d0a81b76739debab067e7a32ed6abd73fd64c57'; \
+ BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_ppc64le_linux_hotspot_17_35.tar.gz'; \
+ ;; \
amd64|i386:x86-64) \
ESUM='6f1335d9a7855159f982dac557420397be9aa85f3f7bc84e111d25871c02c0c7'; \
BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_x64_linux_hotspot_17_35.tar.gz'; \
diff --git a/eclipse-temurin_17-focal/Dockerfile.releases.full b/eclipse-temurin_17-focal/Dockerfile.releases.full
index 2ed7442..ca9d492 100644
--- a/eclipse-temurin_17-focal/Dockerfile.releases.full
+++ b/eclipse-temurin_17-focal/Dockerfile.releases.full
@@ -32,6 +32,18 @@ ENV JAVA_VERSION jdk-17+35
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
+ aarch64|arm64) \
+ ESUM='e08e6d8c84da28a2c49ccd511f8835c329fbdd8e4faff662c58fa24cca74021d'; \
+ BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_aarch64_linux_hotspot_17_35.tar.gz'; \
+ ;; \
+ ppc64el|powerpc:common64) \
+ ESUM='2e58f76fd332b73f323e47c73d0a81b76739debab067e7a32ed6abd73fd64c57'; \
+ BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_ppc64le_linux_hotspot_17_35.tar.gz'; \
+ ;; \
+ s390x|s390:64-bit) \
+ ESUM='7a48159fca62b7f6afd58fb2e9712a3ef1494950212d4631e25598b45d9599b1'; \
+ BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_s390x_linux_hotspot_17_35.tar.gz'; \
+ ;; \
amd64|i386:x86-64) \
ESUM='6f1335d9a7855159f982dac557420397be9aa85f3f7bc84e111d25871c02c0c7'; \
BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_x64_linux_hotspot_17_35.tar.gz'; \
|
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.