Skip to content

Commit ab83fba

Browse files
committed
increase timeout
1 parent 7cd7584 commit ab83fba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
Remove-Item -Force -ErrorAction SilentlyContinue out.txt, err.txt
164164
$p = Start-Process -FilePath $exe -ArgumentList @("$arg1","$arg2") -NoNewWindow -PassThru `
165165
-RedirectStandardOutput out.txt -RedirectStandardError err.txt
166-
if (-not (Wait-Process -Id $p.Id -Timeout 120 -ErrorAction SilentlyContinue)) {
166+
if (-not (Wait-Process -Id $p.Id -Timeout 300 -ErrorAction SilentlyContinue)) {
167167
Write-Host "TIMEOUT: killing $exe"
168168
Stop-Process -Id $p.Id -Force -ErrorAction SilentlyContinue
169169
Get-Content err.txt -ErrorAction SilentlyContinue | Write-Host

0 commit comments

Comments
 (0)