mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-09 01:38:27 +08:00
Update Coin to use JDK 21.0.9 LTS:
-macOS 21.0.9
-macOS ARM 21.0.9
-OpenSUSE 16 21.0.9.0-160000.1.1
-OpenSUSE 15.x 21.0.9.0-156000.3.18.2
-RHEL 8.x and 9.x 21.0.9.0.10-1.el9
-SLES 15 21.0.9.0-150600.3.18.2
-Ubuntu 22.04, 22.04 and 24.04 21
-Windows 21.0.9
Task-number: QTBUG-130516
Task-number: QTBUG-130497
Change-Id: Ie4d2706b15000b5cbd71991abb4c840027ef2c82
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
(cherry picked from commit d0c5982795)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
34 lines
1.0 KiB
Bash
Executable File
34 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# This script installs JDK
|
|
|
|
set -ex
|
|
|
|
echo "Installing Java Development Kit"
|
|
|
|
targetFile=zulu21.46.19-ca-jdk21.0.9-macosx_aarch64.dmg
|
|
|
|
url=ci-files01-hki.ci.qt.io:/hdd/www/input/mac
|
|
# url_alt=https://cdn.azul.com/zulu/bin/zulu21.46.19-ca-jdk21.0.9-macosx_aarch64.dmg
|
|
|
|
echo "Mounting $targetFile"
|
|
sudo mkdir -p /Volumes/files
|
|
sudo mount -o locallocks "$url" /Volumes/files
|
|
|
|
sudo cp "/Volumes/files/$targetFile" /tmp
|
|
sudo umount /Volumes/files
|
|
sudo hdiutil attach "/tmp/$targetFile"
|
|
|
|
echo Installing JDK
|
|
cd /Volumes/Azul\ Zulu\ JDK\ 21.46+19 && sudo installer -pkg Double-Click\ to\ Install\ Azul\ Zulu\ JDK\ 21.pkg -target /
|
|
|
|
echo "Unmounting $targetFile"
|
|
sudo hdiutil unmount /Volumes/Azul\ Zulu\ JDK\ 21.46+19 -force
|
|
|
|
echo "Disable auto update"
|
|
sudo defaults write /Library/Preferences/com.oracle.java.Java-Updater JavaAutoUpdateEnabled -bool false
|
|
|
|
echo "JDK Version = 21.0.9" >> ~/versions.txt
|