Skip to content

Commit

Permalink
Add test windows exe action
Browse files Browse the repository at this point in the history
Signed-off-by: romanodanilo <[email protected]>
  • Loading branch information
romanodanilo committed Aug 28, 2024
1 parent 2dc1b99 commit 55e95b3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ jobs:
- name: Execute pre built windows exe
run: |
Start-Process -FilePath "D:\\a\qc-framework\qc-framework\.github\workflows\windows-pre-built/bin/TextReport.exe" -ArgumentList "--help"
Start-Process -FilePath "D:\\a\qc-framework\qc-framework\.github\workflows\windows-pre-built/bin/TextReport.exe" -ArgumentList "--help" -RedirectStandardOutput "output1.txt" -Wait
Get-Content "output1.txt"
Start-Process -FilePath "D:\\a\qc-framework\qc-framework\.github\workflows\windows-pre-built/bin/ResultPooling.exe" -ArgumentList "--help" -RedirectStandardOutput "output2.txt" -Wait
Get-Content "output2.txt"
Start-Process -FilePath "D:\\a\qc-framework\qc-framework\.github\workflows\windows-pre-built/bin/ResultPooling.exe" -ArgumentList "--help"
shell: pwsh

0 comments on commit 55e95b3

Please sign in to comment.