mirror of
git://code.qt.io/qt/qt5.git
synced 2025-12-21 15:38:15 +08:00
This is needed after moving from internal tqtc-qt5 branches to qt5.
Android 11 image was built internally.
Task-number: QTQAINFRA-4343
Change-Id: Ie0c4c5853079303ef9d4537f3b7b06ab62f14e3b
Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
(cherry picked from commit 12a87cba0a)
157 lines
6.5 KiB
Bash
Executable File
157 lines
6.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#############################################################################
|
|
##
|
|
## Copyright (C) 2022 The Qt Company Ltd.
|
|
## Contact: https://www.qt.io/licensing/
|
|
##
|
|
## This file is part of the provisioning scripts of the Qt Toolkit.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 3 as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
## packaging of this file. Please review the following information to
|
|
## ensure the GNU Lesser General Public License version 3 requirements
|
|
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
##
|
|
## GNU General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
## General Public License version 2.0 or (at your option) the GNU General
|
|
## Public license version 3 or any later version approved by the KDE Free
|
|
## Qt Foundation. The licenses are as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
## included in the packaging of this file. Please review the following
|
|
## information to ensure the GNU General Public License requirements will
|
|
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
## https://www.gnu.org/licenses/gpl-3.0.html.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
# This script install Android sdk and ndk.
|
|
|
|
# It also runs update for SDK API, latest SDK tools, latest platform-tools and build-tools version
|
|
|
|
set -e
|
|
|
|
# shellcheck source=../unix/DownloadURL.sh
|
|
source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh"
|
|
# shellcheck source=../unix/check_and_set_proxy.sh
|
|
source "${BASH_SOURCE%/*}/../unix/check_and_set_proxy.sh"
|
|
# shellcheck source=../unix/SetEnvVar.sh
|
|
source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh"
|
|
|
|
targetFolder="/opt/android"
|
|
sdkTargetFolder="$targetFolder/sdk"
|
|
|
|
basePath="http://ci-files01-hki.intra.qt.io/input/android"
|
|
|
|
toolsVersion="2.1"
|
|
toolsFile="commandlinetools-linux-6609375_latest.zip"
|
|
ndkVersion="r22b"
|
|
ndkFile="android-ndk-$ndkVersion-linux-x86_64.zip"
|
|
sdkBuildToolsVersion="31.0.0"
|
|
sdkApiLevel="android-31"
|
|
|
|
toolsSha1="9172381ff070ee2a416723c1989770cf4b0d1076"
|
|
ndkSha1="9ece64c7f19763dd67320d512794969930fce9dc"
|
|
|
|
# Android automotive
|
|
sdkApiLevelAutomovie="android-30"
|
|
androidAutomotive11Url="$basePath/${sdkApiLevelAutomovie}_automotive.tar.gz"
|
|
androidAutomotive="android-automotive"
|
|
android11Sha="4a5cd2bea7ce323b724c3ff1faab13d99f9d2be9"
|
|
|
|
toolsTargetFile="/tmp/$toolsFile"
|
|
toolsSourceFile="$basePath/$toolsFile"
|
|
ndkTargetFile="/tmp/$ndkFile"
|
|
ndkSourceFile="$basePath/$ndkFile"
|
|
|
|
DownloadURL "$toolsSourceFile" "$toolsSourceFile" "$toolsSha1" "$toolsTargetFile"
|
|
DownloadURL "$ndkSourceFile" "$ndkSourceFile" "$ndkSha1" "$ndkTargetFile"
|
|
echo "Unzipping Android NDK to '$targetFolder'"
|
|
sudo unzip -q "$ndkTargetFile" -d "$targetFolder"
|
|
echo "Unzipping Android Tools to '$sdkTargetFolder'"
|
|
sudo unzip -q "$toolsTargetFile" -d "$sdkTargetFolder"
|
|
rm "$ndkTargetFile"
|
|
rm "$toolsTargetFile"
|
|
|
|
echo "Changing ownership of Android files."
|
|
if uname -a |grep -q "el7"; then
|
|
sudo chown -R qt:wheel "$targetFolder"
|
|
else
|
|
sudo chown -R qt:users "$targetFolder"
|
|
fi
|
|
|
|
# Stop the sdkmanager from printing thousands of lines of #hashmarks.
|
|
# Run the following command under `eval` or `sh -c` so that the shell properly splits it.
|
|
sdkmanager_no_progress_bar_cmd="tr '\r' '\n' | grep -v '^\[[ =]*\]'"
|
|
# But don't let the pipeline hide sdkmanager failures.
|
|
set -o pipefail
|
|
|
|
sudo mkdir "$sdkTargetFolder/cmdline-tools"
|
|
sudo mv "$sdkTargetFolder/tools" "$sdkTargetFolder/cmdline-tools"
|
|
|
|
echo "Running SDK manager for platforms;$sdkApiLevel, platform-tools and build-tools;$sdkBuildToolsVersion."
|
|
# shellcheck disable=SC2031
|
|
if [ "$http_proxy" != "" ]; then
|
|
proxy_host=$(echo "$proxy" | cut -d'/' -f3 | cut -d':' -f1)
|
|
proxy_port=$(echo "$proxy" | cut -d':' -f3)
|
|
echo "y" | "$sdkTargetFolder/cmdline-tools/tools/bin/sdkmanager" --sdk_root=$sdkTargetFolder \
|
|
--no_https --proxy=http --proxy_host="$proxy_host" --proxy_port="$proxy_port" \
|
|
"platforms;$sdkApiLevel" "platform-tools" "build-tools;$sdkBuildToolsVersion" \
|
|
| eval $sdkmanager_no_progress_bar_cmd
|
|
else
|
|
echo "y" | "$sdkTargetFolder/cmdline-tools/tools/bin/sdkmanager" --sdk_root=$sdkTargetFolder \
|
|
"platforms;$sdkApiLevel" "platform-tools" "build-tools;$sdkBuildToolsVersion" \
|
|
| eval $sdkmanager_no_progress_bar_cmd
|
|
fi
|
|
|
|
echo "Checking the contents of Android SDK..."
|
|
ls -l "$sdkTargetFolder"
|
|
|
|
SetEnvVar "ANDROID_SDK_ROOT" "$sdkTargetFolder"
|
|
SetEnvVar "ANDROID_NDK_ROOT" "$targetFolder/android-ndk-$ndkVersion"
|
|
SetEnvVar "ANDROID_NDK_HOST" "linux-x86_64"
|
|
SetEnvVar "ANDROID_API_VERSION" "$sdkApiLevel"
|
|
|
|
# shellcheck disable=SC2129
|
|
echo "Android SDK tools = $toolsVersion" >> ~/versions.txt
|
|
echo "Android SDK Build Tools = $sdkBuildToolsVersion" >> ~/versions.txt
|
|
echo "Android SDK API level = $sdkApiLevel" >> ~/versions.txt
|
|
echo "Android NDK = $ndkVersion" >> ~/versions.txt
|
|
|
|
cd "$sdkTargetFolder/cmdline-tools/tools/bin"
|
|
./sdkmanager --install "emulator" --sdk_root=$sdkTargetFolder \
|
|
| eval $sdkmanager_no_progress_bar_cmd
|
|
echo "y" | ./sdkmanager --install "system-images;android-23;google_apis;x86" \
|
|
| eval $sdkmanager_no_progress_bar_cmd
|
|
|
|
|
|
echo "Checking the contents of Android SDK again..."
|
|
ls -l "$sdkTargetFolder"
|
|
|
|
echo "no" | ./avdmanager create avd -n emulator_x86_api_23 -c 2048M -f \
|
|
-k "system-images;android-23;google_apis;x86"
|
|
|
|
echo "Install $sdkApiLevelAutomovie $androidAutomotive"
|
|
DownloadURL "$androidAutomotive11Url" "$androidAutomotive11Url" "$android11Sha" \
|
|
"/tmp/${sdkApiLevelAutomovie}_automotive.tar.gz"
|
|
sudo tar -xzf "/tmp/${sdkApiLevelAutomovie}_automotive.tar.gz" -C $sdkTargetFolder/system-images
|
|
echo "no" | ./avdmanager create avd -n automotive_emulator_x86_api_30 -c 2048M -f \
|
|
-k "system-images;${sdkApiLevelAutomovie};${androidAutomotive};x86"
|
|
|
|
# Purely informative, show the list of avd devices
|
|
./avdmanager list avd
|