Codecov qmake_gcc_cpp11_gcov Example
The goal of this project is to have a clean Travis CI build, with specs:
- C++ version:
C++11 - Build system:
qmake - C++ compiler:
g++ - Libraries:
STLonly - Code coverage:
gcov(note: it should show the code coverage is below 100%) - Source: multiple files
Add to your .travis.yml file.
language: cpp
compiler: gcc
script:
- ./build.sh
- ./travis_qmake_gcc_cpp11_gcov
- ./get_code_cov.sh # or how ever you get your coverage
after_success:
- bash <(curl -s https://codecov.io/bash)#!/bin/bash
for filename in `find . | egrep '\.cpp'`;
do
gcov-5 -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 appending -t <your upload token> to you where you upload reports.