Ci/AppVeyor: Use preinstalled MySQL and upgrade OpenSSL to 3.2

This commit is contained in:
Shauren
2024-04-02 14:48:30 +02:00
parent 90f390f9b8
commit da3e2b2b74

View File

@@ -5,24 +5,8 @@ init:
- ps: ''
environment:
BOOST_ROOT: C:\Libraries\boost_1_83_0
MYSQL_ROOT_DIR: C:\mysql-8.1.0-winx64
OPENSSL_ROOT_DIR: C:\OpenSSL-v30-Win64
install:
- ps: >-
Write-Host "Installing MySQL Server 8.1" -ForegroundColor Cyan
Write-Host "Downloading MySQL..."
$zipPath = "$($env:temp)\mysql-8.1.0-winx64.zip"
(New-Object Net.WebClient).DownloadFile('https://cdn.mysql.com//Downloads/MySQL-8.1/mysql-8.1.0-winx64.zip', $zipPath)
Write-Host "Unpacking..."
7z x $zipPath -o"C:\" | Out-Null
Write-Host "MySQL Server 8.1 installed" -ForegroundColor Cyan
MYSQL_ROOT_DIR: C:\Program Files\MySQL\MySQL Server 8.0
OPENSSL_ROOT_DIR: C:\OpenSSL-v32-Win64
build_script:
- cmd: >-
git config user.email "appveyor@build.bot" && git config user.name "AppVeyor"