mirror of https://github.com/qt/qt5.git
Add missing sw versions to versions.txt
Change-Id: Ifa12b6c6308e4ad73989e7e935061f77ae1823e2 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
This commit is contained in:
parent
93e31c1281
commit
e3699c5a6f
|
@ -52,3 +52,6 @@ appPrefix="cmake-$version-Linux-x86_64"
|
|||
InstallFromCompressedFileFromURL "$PrimaryUrl" "$AltUrl" "$SHA1" "$targetFolder" "$appPrefix"
|
||||
|
||||
SetEnvVar "PATH" "$targetFolder/bin:\$PATH"
|
||||
|
||||
echo "CMake = $version" >> ~/versions.txt
|
||||
|
||||
|
|
|
@ -56,3 +56,5 @@ function Run-Conan-Install
|
|||
Copy-Item -Path $conanfile -Destination "$outpwd\conanfile.txt"
|
||||
}
|
||||
}
|
||||
|
||||
Write-Output "Conan = 0.24.0" >> ~\versions.txt
|
||||
|
|
|
@ -67,3 +67,5 @@ Pop-Location
|
|||
|
||||
# Following command is needed when using version 1.1.0. With version 1.1.0 msys is not needed.
|
||||
# C:\mingw530\bin\mingw32-make.exe include\openssl\opensslconf.h
|
||||
|
||||
Write-Output "Android OpenSSL = $version" >> ~/versions.txt
|
||||
|
|
|
@ -98,3 +98,9 @@ if ($p -ne $null) {
|
|||
} else {
|
||||
Write-Host "adb.exe not running"
|
||||
}
|
||||
|
||||
Write-Output "Android SDK tools= $sdkVersion" >> ~/versions.txt
|
||||
Write-Output "Android SDK Build Tools = $sdkBuildToolsVersion" >> ~/versions.txt
|
||||
Write-Output "Android SDK Api Level = $sdkApiLevel" >> ~/versions.txt
|
||||
Write-Output "Android NDK = $ndkVersion" >> ~/versions.txt
|
||||
|
||||
|
|
|
@ -43,3 +43,5 @@ if (Is64BitWinHost) {
|
|||
Set-EnvironmentVariable "CI_ICU_PATH_Mingw49" "C:\Utils\icu_53_1_Mingw_builds_4_8_2_posix_seh_64_devel\icu53_1"
|
||||
|
||||
}
|
||||
|
||||
Write-Output "ICU = $version" >> ~\versions.txt
|
||||
|
|
|
@ -7,3 +7,5 @@ Verify-Checksum $zip "80EE5678E714DE99DDAF5F7593AB04DB1C7928E4"
|
|||
Extract-Zip $zip C:\Utils\Jom
|
||||
|
||||
Set-EnvironmentVariable "CI_JOM_PATH" "C:\Utils\Jom"
|
||||
|
||||
Write-Output "Jom = 1.1.2" >> ~/versions.txt
|
||||
|
|
|
@ -45,3 +45,5 @@ Extract-7Zip $archive $libusb_location
|
|||
|
||||
# Tell qt-apps/qdb build system where to find libusb
|
||||
Set-EnvironmentVariable "LIBUSB_PATH" $libusb_location
|
||||
|
||||
Write-Output "libusb = libusb-1.0.21" >> ~/versions.txt
|
||||
|
|
|
@ -62,3 +62,4 @@ if (Is64BitWinHost) {
|
|||
Extract-Mesa $mesaOpenglUrl_32 $mesaOpenglSha1_32 "C:\Windows\system32"
|
||||
}
|
||||
|
||||
Write-Output "Mesa llvmpipe = $version" >> ~/versions.txt
|
||||
|
|
|
@ -63,3 +63,5 @@ Write-Host "Installing patch for Visual Studio $version..."
|
|||
Run-Executable $executable "/norestart /passive"
|
||||
|
||||
Remove-Item -Force -Recurse -Path $toRemove
|
||||
|
||||
Write-Output "Visual Studio = $version" >> ~\versions.txt
|
||||
|
|
|
@ -9,3 +9,5 @@ Extract-Zip $zip C:\Utils\Ninja
|
|||
Remove-Item -Path $zip
|
||||
|
||||
Add-Path "C:\Utils\Ninja"
|
||||
|
||||
Write-Output "Ninja = 1.6.0" >> ~/versions.txt
|
||||
|
|
|
@ -69,3 +69,5 @@ Run-Executable "C:\Python27\python.exe" "-m ensurepip"
|
|||
# $pip_args = "--proxy=" + (getProxy)
|
||||
#}
|
||||
Run-Executable "C:\Python27\Scripts\pip.exe" "install virtualenv"
|
||||
|
||||
Write-Output "Python = $version" >> ~/versions.txt
|
||||
|
|
|
@ -70,3 +70,6 @@ Set-EnvironmentVariable "PIP3_PATH" "$install_path\Scripts"
|
|||
# $pip_args = "--proxy=" + (getProxy)
|
||||
#}
|
||||
Run-Executable "$install_path\Scripts\pip3.exe" "install virtualenv"
|
||||
|
||||
Write-Output "Python3 = $version" >> ~/versions.txt
|
||||
|
||||
|
|
|
@ -12,3 +12,5 @@ $destination = "C:\msys"
|
|||
Download $url $url $zip
|
||||
Verify-Checksum $zip $sha1
|
||||
C:\Utils\sevenzip\7z.exe x $zip -oC:\
|
||||
|
||||
Write-Output "Msys = $version" >> ~/versions.txt
|
||||
|
|
Loading…
Reference in New Issue