mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-24 05:37:45 +08:00
Task-number: QTQAINFRA-7438
Pick-to: 6.8 6.5
Change-Id: I7adc2cba468d73385c46731d7c18777599ca58fb
Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io>
(cherry picked from commit 996d1ca0e1)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
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.10.5"
|
|
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="59d996b3f66c928eb7063a8f66ec12eaf4e21318"
|
|
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
|