Skip to content

Commit

Permalink
Run stuff directly from pwsh
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Dec 13, 2024
1 parent 3f7b943 commit 2e6e0c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ jobs:
popd
D:\a\_temp\setup-msys2\msys2.CMD -c "gcc -Wall -o example example.c -lcalc -lsbcl_librarian"
.\trace.ps1
D:\a\_temp\setup-msys2\msys2.CMD -c './example'
D:\a\_temp\setup-msys2\msys2.CMD -c '$CONDA_PREFIX/python ./example.py'
D:\a\_temp\setup-msys2\msys2.CMD -c '$CONDA_PREFIX/python ./exhaust_heap.py | grep "returned to Python after heap exhaustion (attempt 1)"'
echo '(+ 1 2)' | .\example.exe | % { if ($_ -match "3") { exit 0 } else { exit 1 } }
echo '(+ 1 2)' | python example.py | % { if ($_ -match "3") { exit 0 } else { exit 1 } }
echo '(+ 1 2)' | python exhaust_heap.py | % { if ($_ -match "attempt 1") { exit 0 } else { exit 1 } }

0 comments on commit 2e6e0c4

Please sign in to comment.