Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Feb 16, 2024
1 parent fa52f72 commit 447ca65
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ jobs:
- name: build
run: cmake --build build --config RelWithDebInfo --parallel $(nproc)

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: debug (Windows)
if: startsWith(matrix.os, 'windows')
working-directory: build
run: dumpbin.exe TrajoptLibTest.exe

- name: test
working-directory: build
run: ctest -C RelWithDebInfo --output-on-failure
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ if(BUILD_TESTING)
PRIVATE TrajoptLib fmt::fmt GTest::gtest_main
)
if(NOT CMAKE_TOOLCHAIN_FILE)
gtest_discover_tests(TrajoptLibTest)
# gtest_discover_tests(TrajoptLibTest)
endif()
endif()

Expand Down

0 comments on commit 447ca65

Please sign in to comment.