Skip to content

Minimal project that uses qmake, GCC, C++11, gcov and is tested by Travis CI

License

Notifications You must be signed in to change notification settings

codecov/example-cpp11

 
 

Repository files navigation

Codecov qmake_gcc_cpp11_gcov Example

codecov.io Build Status FOSSA Status

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: STL only
  • Code coverage: gcov (note: it should show the code coverage is below 100%)
  • Source: multiple files

Guide

Travis Setup

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)

Produce Coverage Reports

gcov

#!/bin/bash
for filename in `find . | egrep '\.cpp'`;
do
  gcov-5 -n -o . $filename > /dev/null;
done

Caveats

Private Repo

Repository 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.

Links

License

FOSSA Status

About

Minimal project that uses qmake, GCC, C++11, gcov and is tested by Travis CI

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 53.8%
  • C++ 46.2%