mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-24 13:47:46 +08:00
Sha1's were changed because Liclang versions were rebuilded. To prevent this Libclang versions are now copied to ci-files01-hki which won't be affected if someone will rebuild libclang versions to download.qt.io. This will also reduce download time Task-number: QTQAINFRA-2156 Change-Id: I9164441cb876ee687db4878d06ba1c02cde601bb Reviewed-by: Sami Nurmenniemi <sami.nurmenniemi@qt.io> Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
12 lines
357 B
Bash
Executable File
12 lines
357 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
. $BASEDIR/../common/shared/sw_versions.txt
|
|
VERSION=$libclang_version
|
|
URL="http://ci-files01-hki.intra.qt.io/input/libclang/qt/libclang-release_${VERSION//\./}-linux-Rhel7.2-gcc5.3-x86_64.7z"
|
|
SHA1="bbdbbc0296f42310077539b7247d285386119ef4"
|
|
|
|
$BASEDIR/../common/unix/libclang.sh "$URL" "$SHA1" "$VERSION"
|