mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-02 03:36:54 +08:00
Currently MySQL is enabled only for Windows 10 22h2 msvc2022 and it uses deprecated MySQL Connector/C. This change updates MySQL client library by replacing MySQL Connector/C with MySQL 8.0 Server package which contains a newer client library that works in other Windows targets. This change also enables MySQL in other non-packaging Windows 10/11 targets except ARM, as Windows on ARM still lacks MySQL support. Task-number: QTQAINFRA-4999 Fixes: QTBUG-106097 Change-Id: I4472d3e441668bada18268fc4486bbbeefc4afd6 Reviewed-by: Dimitrios Apostolou <jimis@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
38 lines
1.3 KiB
PowerShell
38 lines
1.3 KiB
PowerShell
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script installs MySQL $version.
|
|
# Both x86 and x64 versions needed when x86 integrations are done on x64 machine
|
|
|
|
$version = "8.0.36"
|
|
$installFolder = "C:\Utils"
|
|
$officialUrl = "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-${version}-winx64.zip"
|
|
$cacheURl = "http://ci-files01-hki.ci.qt.io/input/windows/mysql-${version}-winx64.zip"
|
|
$sha = "e5003569386006ccde9000c98e28e28073c1433d"
|
|
$zip = Get-DownloadLocation ("mysql-" + $version + "-winx64.zip")
|
|
|
|
function Install {
|
|
param(
|
|
[string]$officialUrl,
|
|
[string]$cacheUrl,
|
|
[string]$zip,
|
|
[string]$sha
|
|
)
|
|
|
|
Download $officialUrl $cacheURl $zip
|
|
Verify-Checksum $zip $sha
|
|
Extract-7Zip $zip $installFolder
|
|
Remove $zip
|
|
}
|
|
|
|
Install $officialUrl $cacheURl $zip $sha
|
|
|
|
# Can't set MySQL_ROOT & MySQL_LIBRARY_DIR variables. Those will enable mysql in every windows target.
|
|
# Let's use ENV_MySQL_* and use it in platform_configs
|
|
Set-EnvironmentVariable "ENV_MySQL_ROOT" "${installFolder}\mysql-${version}-winx64"
|
|
Set-EnvironmentVariable "ENV_MySQL_LIBRARY_DIR" "${installFolder}\mysql-${version}-winx64\lib"
|
|
|
|
Write-Output "MySQL = $version" >> ~/versions.txt
|