Skip to content

Commit

Permalink
more CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bfrk committed Mar 11, 2023
1 parent 12a7057 commit a37b795
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,16 @@ jobs:

- name: Run test2 on Windows inside cmd.exe
if: runner.os == 'Windows'
shell: bash
shell: pwsh
run: |
cmd test2
cmd /c test2
cat results.txt
- name: Run test2 on Linux inside xterm
if: runner.os == 'Linux'
shell: bash
run: |
sudo apt-get -y install xterm
xterm ./test2
sudo apt-get -y install xterm xvfb
xvfb&
xvfb-run xterm ./test2
cat results.txt

0 comments on commit a37b795

Please sign in to comment.