mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-20 11:56:31 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
065b7072f6 | ||
|
|
fb335d810c | ||
|
|
068516348c | ||
|
|
a56f9a4b64 |
@@ -10,17 +10,17 @@ $temp = "$env:tmp"
|
|||||||
$cpu_arch = Get-CpuArchitecture
|
$cpu_arch = Get-CpuArchitecture
|
||||||
switch ($cpu_arch) {
|
switch ($cpu_arch) {
|
||||||
arm64 {
|
arm64 {
|
||||||
$zipPackage = "OpenSSH-ARM64"
|
$base_file_name = "OpenSSH-ARM64"
|
||||||
$sha1 = "ca3e8f44a550b7ae71c8e122acd4ed905d66feb0"
|
$sha1 = "ca3e8f44a550b7ae71c8e122acd4ed905d66feb0"
|
||||||
Break
|
Break
|
||||||
}
|
}
|
||||||
x64 {
|
x64 {
|
||||||
$zipPackage = "OpenSSH-Win64"
|
$base_file_name = "OpenSSH-Win64"
|
||||||
$sha1 = "1397d40d789ae0911b3cc818b9dcd9321fed529b"
|
$sha1 = "1397d40d789ae0911b3cc818b9dcd9321fed529b"
|
||||||
Break
|
Break
|
||||||
}
|
}
|
||||||
x86 {
|
x86 {
|
||||||
$zipPackage = "OpenSSH-Win32"
|
$base_file_name = "OpenSSH-Win32"
|
||||||
$sha1 = "4642C62F72C108C411E27CE282A863791B63329B"
|
$sha1 = "4642C62F72C108C411E27CE282A863791B63329B"
|
||||||
Break
|
Break
|
||||||
}
|
}
|
||||||
@@ -29,20 +29,27 @@ switch ($cpu_arch) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "Fetching $zipPackage $version..."
|
Write-Host "Fetching $base_file_name $version..."
|
||||||
$url_cache = "http://ci-files01-hki.ci.qt.io/input/windows/openssh/" + $version + "/" + $zipPackage + ".zip"
|
$url_cache = "http://ci-files01-hki.ci.qt.io/input/windows/openssh/$version/$base_file_name.zip"
|
||||||
$url_official = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/" + $version + "/" + $zipPackage + ".zip"
|
$url_official = "https://github.com/PowerShell/Win32-OpenSSH/releases/download/$version/$base_file_name.zip"
|
||||||
Download $url_official $url_cache "$temp\$zipPackage"
|
$output_zip_file = "$temp\$base_file_name.zip"
|
||||||
Verify-Checksum "$temp\$zipPackage" $sha1
|
Download $url_official $url_cache $output_zip_file
|
||||||
|
Verify-Checksum $output_zip_file $sha1
|
||||||
|
|
||||||
Write-Host "Extracting the package"
|
Write-Host "Extracting the package"
|
||||||
Extract-7Zip "$temp\$zipPackage" C:\"Program Files"
|
Extract-7Zip $output_zip_file "C:\Program Files"
|
||||||
|
# We assume the incoming zip contains exactly one directory, named the same
|
||||||
|
# as the base file name of th zip.
|
||||||
|
$output_dir = "C:\Program Files\$base_file_name"
|
||||||
|
if (-not (Test-Path $output_dir -PathType Container)) {
|
||||||
|
throw "Error. Expected output directory '$output_dir' does not exist."
|
||||||
|
}
|
||||||
|
|
||||||
Write-Host "Installing $zipPackage $version..."
|
Write-Host "Installing $base_file_name $version..."
|
||||||
$path = "C:\Program Files\" + $zipPackage + "\install-sshd.ps1"
|
$install_script = "$output_dir\install-sshd.ps1"
|
||||||
|
|
||||||
# Installation done as shown at https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH
|
# Installation done as shown at https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH
|
||||||
powershell.exe -ExecutionPolicy Bypass -File $path
|
powershell.exe -ExecutionPolicy Bypass -File $install_script
|
||||||
netsh advfirewall firewall add rule name=sshd dir=in action=allow protocol=TCP localport=22
|
netsh advfirewall firewall add rule name=sshd dir=in action=allow protocol=TCP localport=22
|
||||||
net start sshd
|
net start sshd
|
||||||
Set-Service sshd -StartupType Automatic
|
Set-Service sshd -StartupType Automatic
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ DownloadAndExtract () {
|
|||||||
|
|
||||||
|
|
||||||
# Axivion Bauhaus Suite
|
# Axivion Bauhaus Suite
|
||||||
version="7.11.1"
|
version="7.11.3"
|
||||||
sourceFile="http://ci-files01-hki.ci.qt.io/input/axivion/bauhaus-suite-$version-x86_64-gnu_linux.tar.gz"
|
sourceFile="http://ci-files01-hki.ci.qt.io/input/axivion/bauhaus-suite-$version-x86_64-gnu_linux.tar.gz"
|
||||||
targetFile="bauhaus-suite.tar.gz"
|
targetFile="bauhaus-suite.tar.gz"
|
||||||
sha1="5ec7bfacca1827dbf1fc70dcef4d9bfd842396aa"
|
sha1="8ca558908b38ca99500b7e0687609a1531b19121"
|
||||||
cd "$HOME"
|
cd "$HOME"
|
||||||
DownloadAndExtract "$sourceFile" "$sha1" "$targetFile"
|
DownloadAndExtract "$sourceFile" "$sha1" "$targetFile"
|
||||||
|
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ DownloadAndExtract () {
|
|||||||
|
|
||||||
|
|
||||||
# Axivion Bauhaus Suite
|
# Axivion Bauhaus Suite
|
||||||
version="7.11.1"
|
version="7.11.3"
|
||||||
sourceFile="http://ci-files01-hki.ci.qt.io/input/axivion/bauhaus-suite-$version-x86_64-gnu_linux.tar.gz"
|
sourceFile="http://ci-files01-hki.ci.qt.io/input/axivion/bauhaus-suite-$version-x86_64-gnu_linux.tar.gz"
|
||||||
targetFile="bauhaus-suite.tar.gz"
|
targetFile="bauhaus-suite.tar.gz"
|
||||||
sha1="5ec7bfacca1827dbf1fc70dcef4d9bfd842396aa"
|
sha1="8ca558908b38ca99500b7e0687609a1531b19121"
|
||||||
cd "$HOME"
|
cd "$HOME"
|
||||||
DownloadAndExtract "$sourceFile" "$sha1" "$targetFile"
|
DownloadAndExtract "$sourceFile" "$sha1" "$targetFile"
|
||||||
|
|
||||||
|
|||||||
2
qt3d
2
qt3d
Submodule qt3d updated: c4bd9ba7ce...c20077e6b4
Submodule qt5compat updated: cb32a0d979...5f45193ef1
Submodule qtactiveqt updated: 7a6440a03b...cc4ed6d704
2
qtbase
2
qtbase
Submodule qtbase updated: f0619bb5a5...c9203d9e04
2
qtcharts
2
qtcharts
Submodule qtcharts updated: 0c49c6edfa...6d50d2ef2c
2
qtcoap
2
qtcoap
Submodule qtcoap updated: 04a7ae2fae...0b053f5aae
Submodule qtconnectivity updated: 5be3724af8...11e2ffc927
Submodule qtdatavis3d updated: aed94aab92...4e3bff94e3
Submodule qtdeclarative updated: 11dd90391a...805fdc80e1
2
qtdoc
2
qtdoc
Submodule qtdoc updated: 0b40dc84da...380ae064d0
2
qtgraphs
2
qtgraphs
Submodule qtgraphs updated: cc2d6ee97c...d75424854d
2
qtgrpc
2
qtgrpc
Submodule qtgrpc updated: 4e759a2811...6bb241e780
Submodule qthttpserver updated: c5b4b34e4a...b802dfc196
Submodule qtimageformats updated: a17f485c28...4a72cdfec3
Submodule qtlanguageserver updated: f5d8b407d5...85ae1a04b0
Submodule qtlocation updated: 58864f8b5b...f9df2f1fff
2
qtlottie
2
qtlottie
Submodule qtlottie updated: 9c7c590e9c...9e1b5c8434
2
qtmqtt
2
qtmqtt
Submodule qtmqtt updated: d617053c66...a684c2a553
Submodule qtmultimedia updated: adea818ad5...386d7347aa
Submodule qtnetworkauth updated: ffac108250...75b82edc90
2
qtopcua
2
qtopcua
Submodule qtopcua updated: 9444069460...3ad3488075
Submodule qtpositioning updated: 398d993741...ee8076a586
Submodule qtquick3d updated: 2602321f12...60d0c83a97
Submodule qtquick3dphysics updated: b1a6d98182...af87f4191f
Submodule qtquickeffectmaker updated: 2094a1e3dc...d715b08f59
Submodule qtquicktimeline updated: 3a0f8f184f...9c2b64f058
Submodule qtremoteobjects updated: db16f9fb82...44a224865a
2
qtscxml
2
qtscxml
Submodule qtscxml updated: d2ae42475b...2f4074d330
Submodule qtsensors updated: 937f8369c6...123683c1a7
Submodule qtserialbus updated: f686483363...2c74db8c92
Submodule qtserialport updated: c5a28774bc...e7434f73aa
Submodule qtshadertools updated: aafc781d77...ca9cfbf575
2
qtspeech
2
qtspeech
Submodule qtspeech updated: fa5672d83c...a1d75f02e9
2
qtsvg
2
qtsvg
Submodule qtsvg updated: 7977c475dd...a0291e98b0
2
qttools
2
qttools
Submodule qttools updated: e1ff9d9852...4b1a5798e4
Submodule qttranslations updated: 56ecd35c04...c5af5500b8
Submodule qtvirtualkeyboard updated: 4401e9936d...e6c60ecfad
Submodule qtwayland updated: 4a6b0b8b6f...5bcf90b9d9
Submodule qtwebchannel updated: 7f88643cee...eb026fda0a
Submodule qtwebengine updated: d3e23d9c7d...c31beffa8c
Submodule qtwebsockets updated: 88b68ac9e5...085844e4da
Submodule qtwebview updated: e4dddc102d...c1d2c31c9a
Reference in New Issue
Block a user