Skip to content

Commit

Permalink
Disable lcov consistency checks for gcc on macOS
Browse files Browse the repository at this point in the history
It seems gcc has produced some inconsistent results for a while
now, but the latest lcov is balking at them.
  • Loading branch information
pcolby committed Dec 22, 2024
1 parent f9a6519 commit 5207735
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ jobs:
ctest --output-on-failure --test-dir "$RUNNER_TEMP/coverage" --verbose
ctest --output-on-failure --test-dir "$RUNNER_TEMP/release" --verbose
timeout-minutes: 1
- name: Disable lcov consistency checks for gcc
if: matrix.cc == 'gcc'
run: echo 'check_data_consistency = 0' >> "$HOME/.lcovrc"
- name: Collate test coverage
if: matrix.os != 'macos-13' || matrix.cc == 'gcc'
run: cmake --build "$RUNNER_TEMP/coverage" --target coverage
Expand Down

0 comments on commit 5207735

Please sign in to comment.