mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-04-05 02:30:59 +02:00
Merge pull request #506 from zeromq/gfa/coveralls
Coveralls upload in actions
This commit is contained in:
commit
d805bd3b3f
32
.github/workflows/ci.yml
vendored
32
.github/workflows/ci.yml
vendored
@ -18,7 +18,6 @@ jobs:
|
|||||||
drafts: ["ON"]
|
drafts: ["ON"]
|
||||||
libzmq: ["4.3.4"]
|
libzmq: ["4.3.4"]
|
||||||
libzmqbuild: ["cmake"]
|
libzmqbuild: ["cmake"]
|
||||||
platform: [""]
|
|
||||||
include:
|
include:
|
||||||
# older libzmq and gcc without draft
|
# older libzmq and gcc without draft
|
||||||
- os: "ubuntu-18.04"
|
- os: "ubuntu-18.04"
|
||||||
@ -54,6 +53,15 @@ jobs:
|
|||||||
drafts: "OFF"
|
drafts: "OFF"
|
||||||
libzmq: "4.3.4"
|
libzmq: "4.3.4"
|
||||||
libzmqbuild: "cmake"
|
libzmqbuild: "cmake"
|
||||||
|
# coverage (gcc version should match gcov version)
|
||||||
|
- os: "ubuntu-latest"
|
||||||
|
cppstd: "17"
|
||||||
|
cc: "gcc-9"
|
||||||
|
cxx: "g++-9"
|
||||||
|
drafts: "ON"
|
||||||
|
libzmq: "4.3.4"
|
||||||
|
libzmqbuild: "cmake"
|
||||||
|
coverage: "-DCOVERAGE=ON"
|
||||||
# clang
|
# clang
|
||||||
- os: "ubuntu-latest"
|
- os: "ubuntu-latest"
|
||||||
cppstd: "17"
|
cppstd: "17"
|
||||||
@ -126,10 +134,9 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CMAKE_PREFIX_PATH: ${{ env.LIBZMQ }}
|
CMAKE_PREFIX_PATH: ${{ env.LIBZMQ }}
|
||||||
run: |
|
run: |
|
||||||
cmake -H. -Bbuild ${{ matrix.platform}} \
|
cmake -H. -Bbuild ${{ matrix.platform}} ${{ matrix.coverage }} \
|
||||||
-DCMAKE_BUILD_TYPE=${BUILDTYPE} \
|
-DCMAKE_BUILD_TYPE=${BUILDTYPE} \
|
||||||
-DENABLE_DRAFTS=${{ matrix.drafts }} \
|
-DENABLE_DRAFTS=${{ matrix.drafts }} \
|
||||||
-DCOVERAGE=${COVERAGE} \
|
|
||||||
-DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
|
-DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
|
||||||
cmake --build build --config ${BUILDTYPE} -j ${THREADS}
|
cmake --build build --config ${BUILDTYPE} -j ${THREADS}
|
||||||
echo "CPPZMQ=${PWD}/build" >> ${GITHUB_ENV}
|
echo "CPPZMQ=${PWD}/build" >> ${GITHUB_ENV}
|
||||||
@ -154,3 +161,22 @@ jobs:
|
|||||||
cmake --build build --config ${BUILDTYPE}
|
cmake --build build --config ${BUILDTYPE}
|
||||||
cd build
|
cd build
|
||||||
ctest -V -C ${BUILDTYPE}
|
ctest -V -C ${BUILDTYPE}
|
||||||
|
|
||||||
|
- name: lcov
|
||||||
|
if: ${{ matrix.coverage && success() }}
|
||||||
|
run: |
|
||||||
|
sudo apt install -y lcov
|
||||||
|
lcov --capture --directory . --output-file coverage.info
|
||||||
|
lcov --remove coverage.info -o coverage_filtered.info \
|
||||||
|
'/usr/include/*' \
|
||||||
|
'/usr/local/include/*' \
|
||||||
|
${PWD}'/tests/*' \
|
||||||
|
${PWD}'/build/*'
|
||||||
|
# to generate local html: genhtml coverage_filtered.info --output-directory .
|
||||||
|
|
||||||
|
- name: coveralls_upload
|
||||||
|
if: ${{ matrix.coverage && success() }}
|
||||||
|
uses: coverallsapp/github-action@master
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
path-to-lcov: ./coverage_filtered.info
|
||||||
|
@ -44,7 +44,8 @@ OPTION (COVERAGE "Enable gcda file generation needed by lcov" OFF)
|
|||||||
|
|
||||||
if (COVERAGE)
|
if (COVERAGE)
|
||||||
target_compile_options(unit_tests PRIVATE --coverage)
|
target_compile_options(unit_tests PRIVATE --coverage)
|
||||||
target_link_libraries(unit_tests PRIVATE --coverage)
|
target_link_options(unit_tests PRIVATE --coverage)
|
||||||
|
message(STATUS "Coverage enabled")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(CTest)
|
include(CTest)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user