mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 23:46:51 +08:00
Provision emsdk and its dependecies to windows and macos. Task-number: QTBUG-63917 Task-number: QTQAINFRA-2835 Done-with: Juha Karjalainen <juha.karjalainen@qt.io> Change-Id: I24ea9cbc4f7cc95e6952765099d5e46247470011 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
17 lines
538 B
PowerShell
17 lines
538 B
PowerShell
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will install msys which is needed for configuring openssl for Android
|
|
|
|
$version = "1.0.11"
|
|
$url = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msys-$version.7z"
|
|
|
|
$zip = Get-DownloadLocation ("msys-$version.7z")
|
|
$sha1 = "22cd76f1263db8c72727a9537228c481ff33c285"
|
|
$destination = "C:\msys"
|
|
|
|
Download $url $url $zip
|
|
Verify-Checksum $zip $sha1
|
|
C:\Utils\sevenzip\7z.exe x $zip -oC:\
|
|
Set-EnvironmentVariable "MSYS_PATH" "$destination\\1.0\\bin"
|
|
Write-Output "Msys = $version" >> ~/versions.txt
|