mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 08:17:47 +02:00
[ticket/16939] Wait for postgresql service to start on windows CI runners
PHPBB3-16939
This commit is contained in:
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
@@ -554,8 +554,11 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$postgreSqlSvc = Get-Service "postgresql*"
|
$postgreSqlSvc = Get-Service "postgresql*"
|
||||||
Set-Service $postgreSqlSvc.Name -StartupType manual
|
Set-Service $postgreSqlSvc.Name -StartupType manual
|
||||||
|
$runningStatus = [System.ServiceProcess.ServiceControllerStatus]::Running
|
||||||
|
$maxStartTimeout = New-TimeSpan -Seconds 30
|
||||||
try {
|
try {
|
||||||
$postgreSqlSvc.Start()
|
$postgreSqlSvc.Start()
|
||||||
|
$postgreSqlSvc.WaitForStatus($runningStatus, $maxStartTimeout)
|
||||||
} catch {
|
} catch {
|
||||||
$_ | select *
|
$_ | select *
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user