From 40f94c6477ce5651fc6ff19c449ae9854739b163 Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Sun, 26 May 2019 00:45:01 -0700 Subject: [PATCH] Upgrade QLI Installer and use Cal's Qt Mirror This should provide more reliable Windows builds in CI. --- azure-pipelines/download_install_qt.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines/download_install_qt.ps1 b/azure-pipelines/download_install_qt.ps1 index 3fdb619b..7edefbff 100644 --- a/azure-pipelines/download_install_qt.ps1 +++ b/azure-pipelines/download_install_qt.ps1 @@ -1,6 +1,6 @@ $ErrorActionPreference = "Stop" -$qli_install_version = '2019.05.12.4' +$qli_install_version = '2019.05.26.1' $qt_version = '5.12.3' New-Item -Force -ItemType Directory -Path ".\deps\" @@ -21,5 +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/" python .\deps\qli-installer\qli-installer.py $qt_version windows desktop win64_msvc2017_64 Write-Output 'Installed QT Installer'