Skip to content

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 GitHub Actions 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

GitHub Actions Step

Add to your workflows file.

  - name: Upload to Codecov (Action)
    uses: codecov/codecov-action@v2
    with:
      token: {{ token }}

or

  - name: Upload to Codecov (Uploader)
    run: |
      curl -Os https://uploader.codecov.io/latest/linux/codecov
      chmod +x codecov
      ./codecov -t {{ token }}

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%