mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-17 01:36:32 +08:00
Adding all builds Wayland which is the default display
server for Ubuntu. Testing each module in X11, and
testing Wayland client plugin for each module in
Qt Wayland integration. [CI Platforms]
TestDocs was removed, see also QTQAINFRA-6068.
Task-number: QTQAINFRA-6322
Task-number: QTQAINFRA-6098
Task-number: QTQAINFRA-6203
Change-Id: I8db0d861940bdd558384f1cc24243c6a84e133e2
Reviewed-by: Liang Qi <liang.qi@qt.io>
(cherry picked from commit 5a79cf9168)
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
34 lines
1.3 KiB
Bash
34 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
# Copyright (C) 2022 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
|
|
|
|
# Provisions qdoc and qtattributionsscanner binaries; these are used for
|
|
# documentation testing without the need for a dependency to qttools.
|
|
|
|
set -e
|
|
|
|
# shellcheck source=../common/unix/check_and_set_proxy.sh
|
|
"${BASH_SOURCE%/*}/../common/unix/check_and_set_proxy.sh"
|
|
# shellcheck source=../common/unix/DownloadURL.sh
|
|
source "${BASH_SOURCE%/*}/../common/unix/DownloadURL.sh"
|
|
version="68bdc5764da2d4e442181b408751b6572f36fa74"
|
|
sha1="dac76e8f6cb69990661e7d814bea6f32fea29bf4"
|
|
url="https://download.qt.io/development_releases/prebuilt/qdoc/qt/qdoc-qtattributionsscanner_${version//\./}-based-linux-Ubuntu22.04-gcc11.4-x86_64.7z"
|
|
url_cached="http://ci-files01-hki.ci.qt.io/input/qdoc/qt/qdoc-qtattributionsscanner_${version//\./}-based-linux-Ubuntu22.04-gcc11.4-x86_64.7z"
|
|
|
|
zip="/tmp/qdoc-qtattributionsscanner.7z"
|
|
destination="/opt/qt-doctools"
|
|
|
|
sudo mkdir -p "$destination"
|
|
sudo chmod 755 "$destination"
|
|
DownloadURL "$url_cached" "$url" "$sha1" "$zip"
|
|
if command -v 7zr &> /dev/null; then
|
|
sudo 7zr x "$zip" "-o$destination/"
|
|
else
|
|
sudo 7z x "$zip" "-o$destination/"
|
|
fi
|
|
sudo chown -R qt:users "$destination"
|
|
rm -rf "$zip"
|
|
|
|
echo -e "qdoc = $version\nqtattributionsscanner = $version" >> ~/versions.txt
|