We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e103b7e commit 01b056cCopy full SHA for 01b056c
.github/workflows/test.yaml
@@ -95,10 +95,12 @@ jobs:
95
if: matrix.os == 'windows-latest'
96
shell: pwsh
97
run: |
98
+ $outFile = "stackql-server.out.log"
99
+ $errFile = "stackql-server.err.log"
100
Start-Process -FilePath "C:\Temp\stackql.exe" `
101
-ArgumentList "-v", "--pgsrv.port=5444", "srv" `
- -RedirectStandardOutput "stackql-server.log" `
- -RedirectStandardError "stackql-server.log" `
102
+ -RedirectStandardOutput $outFile `
103
+ -RedirectStandardError $errFile `
104
-NoNewWindow
105
Write-Host "StackQL server started from C:\Temp\stackql.exe"
106
Start-Sleep -Seconds 5
0 commit comments