Skip to content

Commit 43c8de0

Browse files
committed
Make sure coverage is properly enabled
1 parent 6dd1a2e commit 43c8de0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140

141141
- name: Configure CMake
142142
run: |
143-
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DENABLE_DEVELOPER_MODE:BOOL=${{matrix.developer_mode}} -DENABLE_LARGE_TESTS:BOOL=${{matrix.large_tests}}
143+
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DENABLE_DEVELOPER_MODE:BOOL=${{matrix.developer_mode}} -DENABLE_LARGE_TESTS:BOOL=${{matrix.large_tests}} -DOPT_ENABLE_COVERAGE:BOOL=TRUE
144144
145145
- name: Build
146146
# Execute the build. You can specify a specific target with "--target <NAME>"

.lgtm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ extraction:
1919
configure:
2020
command:
2121
- mkdir build
22-
- cmake -D ENABLE_COVERAGE:BOOL=TRUE -D ENABLE_DEVELOPER_MODE:BOOL=FALSE -S . -B build
22+
- cmake -D ENABLE_LARGE_TESTS:BOOL=FALSE -D OPT_ENABLE_COVERAGE:BOOL=TRUE -D ENABLE_DEVELOPER_MODE:BOOL=FALSE -D -S . -B build
2323
index:
2424
build_command: cmake --build ./build -- -j2

0 commit comments

Comments
 (0)