mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-02 03:36:54 +08:00
So it also runs on 32bit Windows. Ninja upstream switched their binary builds to 64bit with Ninja 1.7, so we need to provide our own. Amendse8b0be7711Change-Id: Id3329ca481b7743b4d40dad8faaa62285dbe53b0 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commitf945fdc735) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
14 lines
451 B
PowerShell
14 lines
451 B
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
$zip = Get-DownloadLocation "ninja-1.10.2-win-x86.zip"
|
|
|
|
Download http://master.qt.io/development_releases/prebuilt/ninja/v1.10.2/ninja-win-x86.zip \\ci-files01-hki.intra.qt.io\provisioning\ninja\ninja-1.10.2-win-really-x86.zip $zip
|
|
Verify-Checksum $zip "1a22ee9269df8ed69c4600d7ee4ccd8841bb99ca"
|
|
|
|
Extract-7Zip $zip C:\Utils\Ninja
|
|
Remove "$zip"
|
|
|
|
Add-Path "C:\Utils\Ninja"
|
|
|
|
Write-Output "Ninja = 1.10.2" >> ~/versions.txt
|