Skip to content

Commit e2ec608

Browse files
committed
win bug fixes
1 parent b405f3c commit e2ec608

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test-scripts.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)