Skip to content

Commit 01b056c

Browse files
committed
ci update
1 parent e103b7e commit 01b056c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ jobs:
9595
if: matrix.os == 'windows-latest'
9696
shell: pwsh
9797
run: |
98+
$outFile = "stackql-server.out.log"
99+
$errFile = "stackql-server.err.log"
98100
Start-Process -FilePath "C:\Temp\stackql.exe" `
99101
-ArgumentList "-v", "--pgsrv.port=5444", "srv" `
100-
-RedirectStandardOutput "stackql-server.log" `
101-
-RedirectStandardError "stackql-server.log" `
102+
-RedirectStandardOutput $outFile `
103+
-RedirectStandardError $errFile `
102104
-NoNewWindow
103105
Write-Host "StackQL server started from C:\Temp\stackql.exe"
104106
Start-Sleep -Seconds 5

0 commit comments

Comments
 (0)