From c25837fc621ff8bf8ec0543586a45eb954a6abcf Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Wed, 23 Jun 2021 15:50:31 +0300 Subject: [PATCH] azure-pipelines: Download from official qt source The previous source seems to be rate-limited and otherwise not properly available which causes Windows builds to time out. --- azure-pipelines/download_install_qt.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/download_install_qt.ps1 b/azure-pipelines/download_install_qt.ps1 index c2c23220..e31b9b7a 100644 --- a/azure-pipelines/download_install_qt.ps1 +++ b/azure-pipelines/download_install_qt.ps1 @@ -21,6 +21,6 @@ Write-Output 'Installed QLI Installer Dependencies' Write-Output 'Starting QT Installer' $Env:QLI_OUT_DIR = ".\deps\Qt\Qt$qt_version" -$Env:QLI_BASE_URL = "http://mirrors.ocf.berkeley.edu/qt/online/qtsdkrepository/" +$Env:QLI_BASE_URL = "https://download.qt.io/online/qtsdkrepository/" python .\deps\qli-installer\qli-installer.py $qt_version windows desktop win64_msvc2017_64 Write-Output 'Installed QT Installer'