Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ addons:
- dblatex
# unit test requirement
- python-unittest2
# code coverage
- lcov

install:
- PREFIX=$PWD/install
Expand All @@ -60,13 +62,18 @@ before_script:
- source qpid-proton/build/config.sh
- mkdir build
- pushd build
- cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX -DUSE_VALGRIND=NO
- cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX -DUSE_VALGRIND=NO -DCMAKE_BUILD_TYPE=Coverage
- cmake --build . --target install

script:
- pushd ../qpid-proton
- echo $(echo "Current proton checkout:") $(git rev-parse HEAD)
- popd
- ctest -V
- ctest -V && cmake --build . --target coverage
- popd
- mvn apache-rat:check

after_success:
- pushd build
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"