Skip to content

Commit

Permalink
ci: Clarify name of named instance
Browse files Browse the repository at this point in the history
  • Loading branch information
janpio authored May 14, 2024
1 parent e74b556 commit a34d3b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- "--no-default-features --features=vendored-openssl,winauth"

env:
TIBERIUS_TEST_INSTANCE: "MSSQLSERVER"
TIBERIUS_TEST_INSTANCE: "namedInstance"
TIBERIUS_TEST_CONNECTION_STRING: "server=tcp:127.0.0.1,1433;IntegratedSecurity=true;TrustServerCertificate=true"

steps:
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
[reflection.assembly]::LoadWithPartialName("Microsoft.SqlServer.SqlWmiManagement") | Out-Null
$serverName = $env:COMPUTERNAME
$instanceName = "MSSQLSERVER"
$instanceName = "namedInstance"
$smo = 'Microsoft.SqlServer.Management.Smo.'
$wmi = new-object ($smo + 'Wmi.ManagedComputer')
Expand Down Expand Up @@ -181,8 +181,8 @@ jobs:
echo "Starting services"
Set-Service SQLBrowser -StartupType Manual
Start-Service SQLBrowser
net stop MSSQLSERVER
net start MSSQLSERVER
net stop namedInstance
net start namedInstance
- name: Run normal tests
shell: powershell
Expand Down

0 comments on commit a34d3b5

Please sign in to comment.