mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-06-25 04:01:33 +02:00
boost/mqtt5 in coverage
Reviewers: ivica Reviewed By: ivica Subscribers: korina, miljen Differential Revision: https://repo.mireo.local/D33488
This commit is contained in:
5
.github/workflows/coverage.yml
vendored
5
.github/workflows/coverage.yml
vendored
@ -77,9 +77,7 @@ jobs:
|
||||
- name: Generate Coverage Report
|
||||
run: |
|
||||
lcov --capture --output-file coverage.info --directory test/build
|
||||
lcov --remove coverage.info '/usr/include/*' --output-file coverage.info
|
||||
lcov --remove coverage.info '**/test/*' --output-file coverage.info
|
||||
lcov --remove coverage.info '**/boost/*' --output-file coverage.info
|
||||
lcov --extract coverage.info '**/boost/mqtt5/*' --output-file coverage.info
|
||||
|
||||
- name: Upload coverage reports to Codecov
|
||||
uses: codecov/codecov-action@v4
|
||||
@ -90,4 +88,3 @@ jobs:
|
||||
fail_ci_if_error: true
|
||||
plugin: noop
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
|
@ -3,7 +3,8 @@ Boost.MQTT5: A C++17 MQTT client based on Boost.Asio
|
||||
|
||||
Branch | Windows/Linux Build | Coverage | Documentation |
|
||||
-------|---------------------|----------|---------------|
|
||||
[`master`](https://github.com/mireo/async-mqtt5/tree/master) | [](https://github.com/mireo/async-mqtt5/actions/workflows/ci.yml) | [](https://codecov.io/gh/mireo/async-mqtt5/branch/master) | [Documentation](https://spacetime.mireo.com/async-mqtt5/)
|
||||
[`master`](https://github.com/mireo/async-mqtt5/tree/master) | [](https://github.com/mireo/async-mqtt5/actions/workflows/ci.yml) | [](https://codecov.io/gh/mireo/async-mqtt5/branch/master) | [documentation](https://spacetime.mireo.com/async-mqtt5/)
|
||||
[`develop`](https://github.com/mireo/async-mqtt5/tree/develop) | [](https://github.com/mireo/async-mqtt5/actions/workflows/ci.yml) | [](https://codecov.io/gh/mireo/async-mqtt5/branch/develop) |
|
||||
|
||||
Boost.MQTT5 is a professional, industrial-grade C++17 client built on [Boost.Asio](https://www.boost.org/doc/libs/1_82_0/doc/html/boost_asio.html). This Client is designed for publishing or receiving messages from an MQTT 5.0 compatible Broker. Boost.MQTT5 represents a comprehensive implementation of the MQTT 5.0 protocol standard, offering full support for publishing or receiving messages with QoS 0, 1, and 2.
|
||||
|
||||
|
@ -31,4 +31,4 @@ github_checks:
|
||||
annotations: true
|
||||
|
||||
fixes:
|
||||
- ".*/async_mqtt5/::include/async_mqtt5/"
|
||||
- ".*/boost/mqtt5/::include/boost/mqtt5/"
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include <boost/mqtt5/impl/publish_rec_op.hpp>
|
||||
#include <boost/mqtt5/impl/re_auth_op.hpp>
|
||||
|
||||
#include <boost/asio/detached.hpp>
|
||||
#include <boost/asio/error.hpp>
|
||||
#include <boost/asio/prepend.hpp>
|
||||
#include <boost/asio/recycling_allocator.hpp>
|
||||
|
Reference in New Issue
Block a user