mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-25 14:17:50 +08:00
Update tool version from 7.11.1 into 7.11.3 Task-number: QTQAINFRA-7727 Pick-to: 6.11 6.10 6.8 Change-Id: Ic91dbe06c81fc2086e89a715bb1514581ff08620 Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io>
41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#!/bin/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 Axivion Bauhaus Suite tool.
|
|
|
|
set -ex
|
|
|
|
# shellcheck source=../common/unix/DownloadURL.sh
|
|
source "${BASH_SOURCE%/*}/../common/unix/DownloadURL.sh"
|
|
|
|
DownloadAndExtract () {
|
|
url=$1
|
|
sha=$2
|
|
file=$3
|
|
|
|
DownloadURL "$url" "$url" "$sha" "$file"
|
|
tar -xzvf "$file"
|
|
|
|
rm -rf "$file"
|
|
}
|
|
|
|
|
|
# Axivion Bauhaus Suite
|
|
version="7.11.3"
|
|
sourceFile="http://ci-files01-hki.ci.qt.io/input/axivion/bauhaus-suite-$version-x86_64-gnu_linux.tar.gz"
|
|
targetFile="bauhaus-suite.tar.gz"
|
|
sha1="8ca558908b38ca99500b7e0687609a1531b19121"
|
|
cd "$HOME"
|
|
DownloadAndExtract "$sourceFile" "$sha1" "$targetFile"
|
|
|
|
mkdir "$HOME/.bauhaus"
|
|
cd "$HOME/.bauhaus"
|
|
wget http://ci-files01-hki.ci.qt.io/input/axivion/QT_11427439_2026-12-31.key
|
|
cd "$HOME"
|
|
|
|
#Axivion configuration
|
|
cp -r "${BASH_SOURCE%/*}/../common/linux/axivion/" "$HOME/"
|
|
|
|
echo "Axivion Bauhaus Suite = $version" >> ~/versions.txt
|