Skip to content

Commit

Permalink
Again?
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-lidar committed Aug 1, 2024
1 parent 14098b2 commit 39d1750
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ccpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: cmake build
run: cmake --build build -j4
- name: run tests
run: cd build/ && ctest -j4
run: cd build/ && ctest -j4 --output-on-failure
linux-python-build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: cmake build
run: cmake --build build -j4
- name: run tests
run: cd build/ && ctest -j4 -C Debug
run: cd build/ && ctest -j4 -C Debug --output-on-failure
windows-python-build:
runs-on: windows-latest
steps:
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: cmake build
run: cmake --build build -j3
- name: run tests
run: cd build/ && ctest -j3
run: cd build/ && ctest -j3 --output-on-failure
mac-python-build:
runs-on: macos-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion ouster_pcap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ target_include_directories(ouster_pcap PUBLIC
CodeCoverageFunctionality(ouster_pcap)

if(WIN32)
target_compile_options(ouster_pcap PRIVATE /wd4200)
# target_compile_options(ouster_pcap PRIVATE /wd4200)
target_link_libraries(ouster_pcap PUBLIC ws2_32)
endif()
target_link_libraries(ouster_pcap
Expand Down

0 comments on commit 39d1750

Please sign in to comment.