mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-06 06:56:53 +08:00
Pick-to: 6.3 Pick-to: 6.2 Pick-to: 5.15 Change-Id: I93702b9faac5abc9fc01a5725cf34a17a94f0bea Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ville-Pekka Karhu <ville-pekka.karhu@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
100 lines
4.1 KiB
PowerShell
100 lines
4.1 KiB
PowerShell
#############################################################################
|
|
##
|
|
## Copyright (C) 2022 The Qt Company Ltd.
|
|
## Contact: https://www.qt.io/licensing/
|
|
##
|
|
## This file is part of the provisioning scripts of the Qt Toolkit.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 3 as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
## packaging of this file. Please review the following information to
|
|
## ensure the GNU Lesser General Public License version 3 requirements
|
|
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
##
|
|
## GNU General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
## General Public License version 2.0 or (at your option) the GNU General
|
|
## Public license version 3 or any later version approved by the KDE Free
|
|
## Qt Foundation. The licenses are as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
## included in the packaging of this file. Please review the following
|
|
## information to ensure the GNU General Public License requirements will
|
|
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
## https://www.gnu.org/licenses/gpl-3.0.html.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script installs OpenSSL $version.
|
|
# Both x86 and x64 versions needed when x86 integrations are done on x64 machine
|
|
|
|
$version = "1_1_1m"
|
|
$packagex64 = "C:\Windows\Temp\Win64OpenSSL-$version.exe"
|
|
$packagex86 = "C:\Windows\Temp\Win32OpenSSL-$version.exe"
|
|
|
|
if (Is64BitWinHost) {
|
|
|
|
# Install x64 bit version
|
|
$architecture = "x64"
|
|
$installFolder = "C:\openssl"
|
|
$externalUrl = "https://slproweb.com/download/Win64OpenSSL-$version.exe"
|
|
$internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win64OpenSSL-$version.exe"
|
|
$sha1 = "16d83bd6d36be7b3ea85f822135352fa8f8d8134"
|
|
|
|
Write-Host "Fetching from URL ..."
|
|
Download $externalUrl $internalUrl $packagex64
|
|
Verify-Checksum $packagex64 $sha1
|
|
Write-Host "Installing $packagex64 ..."
|
|
Run-Executable "$packagex64" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder"
|
|
|
|
Write-Host "Remove downloaded $packagex64 ..."
|
|
Remove "$packagex64"
|
|
|
|
Set-EnvironmentVariable "OPENSSL_CONF_x64" "$installFolder\bin\openssl.cfg"
|
|
Set-EnvironmentVariable "OPENSSL_INCLUDE_x64" "$installFolder\include"
|
|
Set-EnvironmentVariable "OPENSSL_LIB_x64" "$installFolder\lib"
|
|
}
|
|
|
|
# Install x86 bit version
|
|
$architecture = "x86"
|
|
|
|
if (Is64BitWinHost) {
|
|
$installFolder = "C:\openssl$architecture"
|
|
} else {
|
|
$installFolder = "C:\openssl"
|
|
}
|
|
|
|
$externalUrl = "https://slproweb.com/download/Win32OpenSSL-$version.exe"
|
|
$internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win32OpenSSL-$version.exe"
|
|
$sha1 = "1d7146e56b201404ce67f1e636eab360211c175a"
|
|
|
|
Write-Host "Fetching from URL ..."
|
|
Download $externalUrl $internalUrl $packagex86
|
|
Verify-Checksum $packagex86 $sha1
|
|
Write-Host "Installing $packagex86 ..."
|
|
Run-Executable "$packagex86" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder"
|
|
|
|
Write-Host "Remove downloaded $packagex86 ..."
|
|
Remove "$packagex86"
|
|
|
|
Set-EnvironmentVariable "OPENSSL_CONF_x86" "$installFolder\bin\openssl.cfg"
|
|
Set-EnvironmentVariable "OPENSSL_INCLUDE_x86" "$installFolder\include"
|
|
Set-EnvironmentVariable "OPENSSL_LIB_x86" "$installFolder\lib"
|
|
|
|
# Store version information to ~/versions.txt, which is used to print version information to provision log.
|
|
Write-Output "OpenSSL = $version" >> ~/versions.txt
|