Codecov qmake_gcc_cpp98_gcov Example
The goal of this project is to have a clean Travis CI build, with specs:
- C++ version:
C++98 - Build system:
qmake - C++ compiler:
g++ - Libraries:
STLonly - Code coverage:
gcov(note: it should show the code coverage is below 100%) - Source: multiple files
Additionally, the code coverage should be measured by CodeCov.
Add to your .travis.yml file.
language: cpp
compiler: gcc
before_install:
- sudo pip install codecov
script:
- ./build.sh
- ./travis_qmake_gcc_cpp98_gcov
- ./get_code_cov.sh
- codecov#!/bin/bash
for filename in `find . | egrep '\.cpp'`;
do
gcov -n -o . $filename > /dev/null;
doneRepository tokens are required for (a) all private repos, (b) public repos not using Travis-CI, CircleCI or AppVeyor. Find your repository token at Codecov and provide via codecov --token=:token or export CODECOV_TOKEN=":token"
- C++11: travis_qmake_gcc_cpp11_gcov
- C++14: travis_qmake_gcc_cpp14_gcov
- More documentation at https://docs.codecov.io
- Configure codecov through the
codecov.ymlhttps://docs.codecov.io/docs/codecov-yaml
We are happy to help if you have any questions. Please contact email our Support at [email protected]


