File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ jobs:
175175 test-windows :
176176 name : Test win/run.ps1 on Windows
177177 runs-on : windows-latest
178- timeout-minutes : 3
178+ timeout-minutes : 15
179179 environment : BrowserStack
180180 steps :
181181 - name : Checkout code
@@ -311,10 +311,14 @@ jobs:
311311 New-Item -ItemType Directory -Force -Path $dest | Out-Null
312312
313313 $logPath = Join-Path $env:USERPROFILE ".browserstack\NOW\logs"
314+ $logPath2 = Join-Path $env:USERPROFILE "AppData\Local\Temp"
315+ $logPath3 = Join-Path "C:\Temp"
314316
315317 if (Test-Path $logPath) {
316318 Write-Host "Copying logs from $logPath"
317319 Copy-Item -Path (Join-Path $logPath "*") -Destination $dest -Recurse -Force -ErrorAction SilentlyContinue
320+ Copy-Item -Path (Join-Path $logPath2 "*") -Destination $dest -Recurse -Force -ErrorAction SilentlyContinue
321+ Copy-Item -Path (Join-Path $logPath3 "*") -Destination $dest -Recurse -Force -ErrorAction SilentlyContinue
318322 }
319323 else {
320324 Write-Host "No logs found at $logPath"
You can’t perform that action at this time.
0 commit comments