Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Apr 29, 2024
1 parent a5e6457 commit acb6077
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
# so we don't break GitHub Actions concurrency limit
- name: "Test"
os: macos-latest
- name: "Coverage"
os: macos-latest
- name: "Coverage"
os: windows-2022

Expand Down Expand Up @@ -133,8 +135,8 @@ jobs:
working-directory: ${{env.WORK_DIR}}
shell: bash
run: |
lcov --directory . --ignore-errors gcov --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '/Applications/Xcode*' '*build/*' '*JUCE/modules*' '*foleys_*' '*chowdsp_utils/tests*' '*third_party*' '*chowdsp_foleys*' '*chowdsp_core/JUCEHelpers*' --output-file coverage.info
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '/Applications/Xcode*' '*chowdsp_utils/build/*' '*JUCE/modules*' '*foleys_*' '*chowdsp_utils/tests*' '*third_party*' '*chowdsp_foleys*' '*chowdsp_core/JUCEHelpers*' --output-file coverage.info
- name: Report Coverage Data
if: matrix.run_coverage
Expand All @@ -149,7 +151,6 @@ jobs:
working-directory: ${{env.WORK_DIR}}
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
disable_search: true
plugins: ""
files: ${{env.WORK_DIR}}/coverage.info
codecov_yml_path: ${{env.WORK_DIR}}/codecov.yml
verbose: true
2 changes: 2 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ ignore:
- "modules/gui/chowdsp_foleys"
- "modules/gui/chowdsp_gui/Presets"
- "**/third_party/**"
- "build/**"
- "tests/**"

0 comments on commit acb6077

Please sign in to comment.