-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ci/AppVeyor: Use preinstalled MySQL and upgrade OpenSSL to 3.2
(cherry picked from commit da3e2b2b741859c8f3c3503b6cb0029e439f0c70)
- Loading branch information
Showing
1 changed file
with
2 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]" && git config user.name "AppVeyor" | ||
|