From 834a687959603117c17c41008bfbee82e3ba2dae Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Mon, 16 Dec 2019 16:30:35 -0800 Subject: [PATCH] Download and install Qt --- .appveyor.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 4fa404579..32a0e9007 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,6 +19,14 @@ install: - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" - set PATH=C:\Qt\Tools\QtCreator\bin;C:\Qt\5.12.5\msvc2017_64\bin;%PATH% - mkdir %LOCALAPPDATA%\QtProject && copy test\qtlogging.ini %LOCALAPPDATA%\QtProject\ + - ps: | + Write-Host "Installing Qt..." -ForegroundColor Cyan + $qt7zPath = "$($env:USERPROFILE)\Qt-QGC-5.12.6.7z" + Write-Host "Downloading..." + (New-Object Net.WebClient).DownloadFile('https://qgroundcontrol.s3-us-west-2.amazonaws.com/dependencies/Qt-QGC-5.12.6.7z', $msiPath) + Write-Host "Unzipping..." + cmd /c start /wait 7z x $qt7zPath -oC:\ + Write-Host "Installed" -ForegroundColor Green - ps: | Write-Host "Installing GStreamer..." -ForegroundColor Cyan $msiPath = "$($env:USERPROFILE)\gstreamer-1.0-x86_64-1.14.4.msi" -- 2.22.0