Skip to content

Commit

Permalink
Disable coverage on Liux with clang/LLVM.
Browse files Browse the repository at this point in the history
  • Loading branch information
gerickson committed Aug 5, 2024
1 parent 5827881 commit fe0cd53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@ jobs:
runs-on: ubuntu-latest
name: "Linux ${{matrix.compiler['name']}} [${{matrix.configuration['name']}}]"

# Coverage seems to have a problem on Linux with clang due to an
# 'atexit' issue during linking of the test executables. So, only
# assert '--enable-coverage' for GCC.

strategy:
matrix:
compiler:
- { name: GCC, c: gcc, cxx: g++, options: "" }
- { name: GCC, c: gcc, cxx: g++, options: "--enable-coverage" }
- { name: clang/LLVM, c: clang, cxx: clang++, options: "" }
configuration:
- { name: "Debug", options: "--enable-debug" }
Expand Down

0 comments on commit fe0cd53

Please sign in to comment.