Skip to content

Commit

Permalink
Not using ctest in win CI github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele77 committed Oct 15, 2024
1 parent a7cb3df commit 3abe7dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unix_ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI of Cli
name: Unix CI

on: [push,pull_request]

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/win_ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Windows CI

on: [push, pull_request]

Expand Down Expand Up @@ -36,5 +36,7 @@ jobs:
run: cmake --build build --config ${{matrix.build_type}}

- name: Run tests
working-directory: build
run: ctest -C ${{matrix.build_type}} --rerun-failed --output-on-failure
# working-directory: build
working-directory: build/test/${{matrix.build_type}}
# run: ctest -C ${{matrix.build_type}} --rerun-failed --output-on-failure
run: test_suite

0 comments on commit 3abe7dc

Please sign in to comment.