From 45f573413a9af202e109f404f011d13f90e033f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20L=2E=20Charlier?= Date: Mon, 6 Nov 2023 09:34:45 +0100 Subject: [PATCH] chore: replace MySQL 5.7 with MySQL 8.0 for QA tests (#645) chore: replace MySQL 5.7 with MLySQL 8.0 for QA tests --- DubUrl.QA/Mysql/deploy-mysql-test-env.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DubUrl.QA/Mysql/deploy-mysql-test-env.ps1 b/DubUrl.QA/Mysql/deploy-mysql-test-env.ps1 index 3af7ca94..188cc446 100644 --- a/DubUrl.QA/Mysql/deploy-mysql-test-env.ps1 +++ b/DubUrl.QA/Mysql/deploy-mysql-test-env.ps1 @@ -1,6 +1,6 @@ Param( [switch] $force=$false - , [string] $databaseService= "MySQL57" + , [string] $databaseService= "MySQL80" , [string[]] $odbcDrivers = @("MariaDB", "MySQL") , [string] $config = "Release" , [string[]] $frameworks = @("net6.0", "net7.0") @@ -19,6 +19,7 @@ if (-not (Test-Path -Path $mySqlPath)) { $mySqlPath = $mySqlPath -replace "C:", "E:" If (-not (Test-Path -Path $mySqlPath)) { $mySqlPath = $mySqlPath -replace "E:", "C:" + Write-Warning "MySQL installation folder '$mySqlPath' doesn't exist'" } } Write-Host "Using '$mySqlPath' as MySQL installation folder"