Skip to content

Commit e97af9b

Browse files
committed
fix: Upstream broke aarch64 builds
A "bug fix" makes the build stop. We could probably just patch it out but if this is known to be broken then lets just stay on ga till an update is actually needed. openjdk/jdk8u@ffdc8d8 https://mail.openjdk.org/pipermail/jdk8u-dev/2026-January/020987.html
1 parent 9c7f1f3 commit e97af9b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

clonejdk.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
set -e
33
if [[ "$TARGET_JDK" == "arm" ]]; then
44
git clone --depth 1 https://github.com/openjdk/aarch32-port-jdk8u openjdk
5+
elif [[ "$TARGET_JDK" == "arm64" ]]; then
6+
# See https://github.com/openjdk/jdk8u/commit/ffdc8d8946c307a2ce911b2e6f6fa654c71d81b6 as to how they broke newer versions for aarch64.
7+
git clone --depth 1 https://github.com/openjdk/jdk8u --branch jdk8u482-ga openjdk
58
elif [[ "$BUILD_IOS" == "1" ]]; then
69
git clone --depth 1 https://github.com/corretto/corretto-8 openjdk
710
else

0 commit comments

Comments
 (0)