Skip to content

Commit

Permalink
Fixed MinGW directory path-2
Browse files Browse the repository at this point in the history
  • Loading branch information
bialger committed Feb 13, 2024
1 parent cf480f8 commit 8f9f67e
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 @@ -96,8 +96,12 @@ jobs:
working-directory: ./cmake-build-debug
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
cd Debug
./cpp_tests_tests.exe
if [ "${{ matrix.config.cxx }}" == "g++" ]; then
./cpp_tests_tests.exe
else
cd Debug
./cpp_tests_tests.exe
fi
else
cd tests
./cpp_tests_tests
Expand Down

0 comments on commit 8f9f67e

Please sign in to comment.