M .gitlab-ci.yml => .gitlab-ci.yml +2 -1
@@ 85,10 85,11 @@ build:rpm:
- make biboumi -j$(nproc)
- make check
- make coverage
- - mkdir tests_outputs && pushd tests_outputs && make e2e -j$(nproc) -C .. && popd
+ - mkdir tests_outputs && pushd tests_outputs && make coverage_e2e -j$(nproc) -C .. && popd
artifacts:
paths:
- build/coverage/
+ - build/coverage_e2e/
- build/tests_outputs/
when: always
M CMakeLists.txt => CMakeLists.txt +4 -0
@@ 232,6 232,10 @@ if(CMAKE_BUILD_TYPE MATCHES Debug)
test_suite
coverage
)
+ SETUP_TARGET_FOR_COVERAGE(coverage_e2e
+ make
+ coverage_e2e
+ e2e)
endif()
#