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 ae8eafc commit e103b7eCopy full SHA for e103b7e
.github/workflows/test.yaml
@@ -93,12 +93,15 @@ jobs:
93
94
- name: Start StackQL server (Windows)
95
if: matrix.os == 'windows-latest'
96
- shell: cmd
+ shell: pwsh
97
run: |
98
- C:\Temp\stackql.exe -v --pgsrv.port=5444 srv > stackql-server.log 2>&1 &
99
- echo StackQL server started from C:\Temp\stackql.exe
100
- timeout /t 5 /nobreak > NUL
101
-
+ Start-Process -FilePath "C:\Temp\stackql.exe" `
+ -ArgumentList "-v", "--pgsrv.port=5444", "srv" `
+ -RedirectStandardOutput "stackql-server.log" `
+ -RedirectStandardError "stackql-server.log" `
102
+ -NoNewWindow
103
+ Write-Host "StackQL server started from C:\Temp\stackql.exe"
104
+ Start-Sleep -Seconds 5
105
106
# - name: Run server tests
107
# env:
0 commit comments