Skip to content

Commit

Permalink
Fix "Run tests" step for windows mingw CI
Browse files Browse the repository at this point in the history
Use script syntax for command.com instead of sh.
  • Loading branch information
dg0yt committed Dec 1, 2023
1 parent d500229 commit baef888
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_windows_mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Run tests
working-directory: ${{github.workspace}}
run: |
mkdir tmp
export TMP=${{github.workspace}}\\tmp
export CTEST_OUTPUT_ON_FAILURE=1
mkdir ${{github.workspace}}\tmp
set TMP=${{github.workspace}}\tmp
set CTEST_OUTPUT_ON_FAILURE=1
ctest

0 comments on commit baef888

Please sign in to comment.