Skip to content

Commit

Permalink
Trying to ignore errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Oct 15, 2024
1 parent 5eef432 commit 8ca4c1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Collect Coverage Data
run: |
lcov --directory . --capture --output-file coverage.info
lcov --directory . --ignore-errors gcov --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '/Applications/Xcode*' '*build*' '*test*' --output-file coverage.info
- name: Report Coverage Data
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if(CHOWDSP_FFT_COVERAGE)
message(STATUS "chowdsp_fft -- Appending code coverage compiler flags: -g --coverage")
target_compile_options(chowdsp_fft_avx PUBLIC -g --coverage)
target_compile_options(chowdsp_fft PUBLIC -g --coverage)
target_compile_options(test_chowdsp_fft_cpp PUBLIC -O0 -g --coverage)
target_compile_options(test_chowdsp_fft_cpp PUBLIC -g --coverage)
target_link_options(test_chowdsp_fft_cpp PUBLIC --coverage)
endif()

Expand Down

0 comments on commit 8ca4c1a

Please sign in to comment.