Skip to content

Commit

Permalink
Fixed MinGW directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
bialger committed Feb 13, 2024
1 parent c1fe92b commit cf480f8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,12 @@ jobs:
working-directory: ./cmake-build-release
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
cd Debug
./cpp_tests.exe --help
if [ "${{ matrix.config.cxx }}" == "g++" ]; then
./cpp_tests.exe --help
else
cd Debug
./cpp_tests.exe --help
fi
else
cd bin
./cpp_tests --help
Expand Down

0 comments on commit cf480f8

Please sign in to comment.