Use local mirror of source archive which Qt deleted in build script

This commit is contained in:
baldurk
2020-03-03 11:35:25 +00:00
parent 77131d3f75
commit 3a9152a318
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ echo "Building renderdoc-build docker image"
# Ensure the docker image is prepared
pushd "${BUILD_ROOT}"/scripts/docker
docker build -t renderdoc-build .
docker build -t renderdoc-build . || exit 1
popd
echo "Docker image built. Running build"
+9 -1
View File
@@ -64,7 +64,15 @@ cd ..
apt-get install --force-yes -y libfontconfig1-dev
# build qt for static linking
wget http://download.qt.io/archive/qt/5.6/5.6.2/single/qt-everywhere-opensource-src-5.6.2.tar.xz
#
# Qt deleted the archive from their official mirrors (wtf?)
# It is rehosted on renderdoc.org and the md5 is verified against the official md5:
# https://web.archive.org/web/20161212004141/https://download.qt.io/archive/qt/5.6/5.6.2/single/md5sums.txt
#wget http://download.qt.io/archive/qt/5.6/5.6.2/single/qt-everywhere-opensource-src-5.6.2.tar.xz
wget https://renderdoc.org/qt-everywhere-opensource-src-5.6.2.tar.xz
echo "5175fba2f221fd4c91e94771a57a5557 qt-everywhere-opensource-src-5.6.2.tar.xz" | md5sum -c -
tar -xf qt-everywhere-opensource-src-5.6.2.tar.xz
cd qt-everywhere-opensource-src-5.6.2