• Stars
    star
    143
  • Rank 248,615 (Top 6 %)
  • Language CMake
  • License
    MIT License
  • Created over 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Codecov CI CMake g++ cpp11 lcov Example

Travis CI logo Codecov logo FOSSA Status

Build Status codecov MIT License

The goal of this project is to build project with following tools:

  • C++ version: C++11
  • Build system: CMake
  • C++ compiler: g++ or Visual Studio
  • Libraries: STL only
  • Code coverage report: lcov and OpenCppCoverage(note: it should show the code coverage is below 100%)
  • CodeCov (code coverage is measured by CodeCov).
  • Source: multiple files

Special Thanks

Goes to Richel Bilderbeek for inspiration and all work on Travis CI tutorials. Here is a link to a project with the same structure (without lcov), and here is a list of all his Travis configuration examples.

Prerequisites

To build the project you need to install CMake. (Install instructions) To display a code coverage report in the console, install lcov. (Download lcov, Instructions)

Guide

  1. Compile with code coverage instrumentation enabled (GCC).
  2. Execute the tests to generate the coverage data.
  3. (Optionally) generate and customize reports with lcov.
  4. Upload to CodeCov using the bash uploader.

Travis Setup Using lcov

Add to your .travis.yml file:

addons:
  apt:
    packages: lcov

after_success:
# Create lcov report
- lcov --capture --directory . --output-file coverage.info
- lcov --remove coverage.info '/usr/*' --output-file coverage.info # filter system-files
- lcov --list coverage.info # debug info
# Uploading report to CodeCov
- bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"

Travis Setup without lcov

By default the bash uploader processes the coverage data using gcov when no file is supplied.

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

Caveats

Private Repos

Add to your .travis.yml file:

after_success:
  - bash <(curl -s https://codecov.io/bash) -t uuid-repo-token

Example details

This repo can serve as the starting point for a new project. The following is worth noticing:

  1. Use of a build script instead of putting the commands into .travis.yml
  • Allows local testing
  • Allows usage of set -e to error out with meaningfull messages on any command failure
  1. Separate testing source tree
  • Allows to easily enable/disable testing
  • Allows usage in parent projects (you don't want to build the tests if you are consumed)
  • You may want to exclude coverage of test files which is easier when they are in a separate folder. Remember to use full paths for patterns (like '*/tests/*')
  1. Use of travis cache to cache manually build 3rd-party dependencies (like boost)
  • Speeds up build
  • More can be added (e.g. ccache)
  • Those need to be excluded from coverage info too

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.

  1. More documentation at https://docs.codecov.io
  2. Configure codecov through the codecov.yml https://docs.codecov.io/docs/codecov-yaml

We are happy to help if you have any questions. Please email our Support at [email protected]

FOSSA Status

More Repositories

1

codecov-action

GitHub Action that uploads coverage to Codecov ☂️
TypeScript
1,391
star
2

self-hosted

Example of how to setup Codecov with docker compose
Shell
379
star
3

example-python

Python coverage example
Python
299
star
4

codecov-node

Global coverage report uploader for Codecov in NodeJS
JavaScript
291
star
5

codecov-bash

Global coverage report uploader for Codecov
Shell
231
star
6

browser-extension

Codecov Browser Extension
JavaScript
212
star
7

example-go

Go coverage example
Go
210
star
8

codecov-api

Code for the API of Codecov
Python
206
star
9

example-node

Example repo for uploading reports to Codecov
JavaScript
191
star
10

codecov-python

Python report uploader for Codecov
Python
184
star
11

example-android

Android code coverage example with https://codecov.io
Java
144
star
12

example-swift

Codecov: Swift coverage example
Swift
127
star
13

example-csharp

Codecov: C# example repository
C#
115
star
14

timestring

Making time easier since "Jan 17th, 2013 at 3:59pm"
Python
101
star
15

uploader

Codecov's universal binary uploader.
TypeScript
101
star
16

example-rust

Rust
87
star
17

example-php

PHP coverage example
PHP
86
star
18

example-java-gradle

Java
84
star
19

sourcegraph-codecov

See code coverage information from Codecov on GitHub, Sourcegraph, and other tools.
TypeScript
74
star
20

codecov-ruby

Ruby uploader for Codecov
Ruby
70
star
21

example-java

Java Example
69
star
22

example-java-maven

Java
54
star
23

example-bash

Codecov: Bash/Shell coverage example
Ruby
50
star
24

example-typescript

Example repo for uploading reports to Codecov https://codecov.io
TypeScript
47
star
25

worker

Code for Background Workers of Codecov
Python
45
star
26

codecov-cli

Codecov's Command Line Interface. Used for uploading to Codecov in your CI, Test Labelling, Local Upload, and more
Python
43
star
27

gazebo

React SPA
TypeScript
42
star
28

example-scala

Scala coverage example
Scala
35
star
29

example-c

Upload reports to Codecov using C/C++
C
34
star
30

feedback

A place to discuss feedback about the pull request and web product experience.
33
star
31

dart

Codecov Dart coverage report uploader
Dart
29
star
32

codecov-browser-extension

A browser extension for Codecov. Works for Chrome and Firefox
TypeScript
29
star
33

opentelem-laravel

A WIP exporter for Laravel to capture and export opentelem data.
PHP
28
star
34

codecov-exe

.exe report uploader for Codecov https://codecov.io
C#
25
star
35

example-objc

Codecov example for Xcode
Objective-C
25
star
36

example-fortran

Example repo for uploading reports to Codecov
Fortran
22
star
37

example-perl

Perl
22
star
38

example-kotlin

Kotlin coverage example
Kotlin
21
star
39

example-ruby

Ruby coverage example
Ruby
20
star
40

swift-standard

Codecov coverage standard for Swift
Swift
19
star
41

codecov-circleci-orb

Shell
18
star
42

example-r

R
17
star
43

example-elixir

Elixir
15
star
44

codecov-perl

Backend for Codecov reporting of coverage
Perl
14
star
45

example-clojure

Example Clojure integration with Codecov
Clojure
14
star
46

contributing

14
star
47

go-standard

Codecov coverage standard for go
Python
13
star
48

shared

Shared code between worker and api
Python
13
star
49

python-standard

Codecov coverage standard for Python
Python
13
star
50

example-vala

Vala
12
star
51

cf-flags-demo

A demo of Codecov's carryforward flags feature.
Python
12
star
52

example-julia

Julia
11
star
53

example-d

Example repository for D and Codecov
D
10
star
54

java-standard

Codecov coverage standard for Java
Python
9
star
55

kotlin-standard

Codecov coverage standard for Kotlin
Kotlin
8
star
56

typescript-standard

Codecov coverage standard for TypeScript
JavaScript
8
star
57

cpp-11-standard

Codecov coverage standard for c++ 11
C++
7
star
58

example-groovy

Groovy coverage example
Groovy
7
star
59

example-lua

Shell
7
star
60

standards

List of Codecov language standards
C++
7
star
61

vscode

A Codecov vscode extention which helps validate and configure new repositories.
Python
6
star
62

helm-charts

Public Helm Charts
6
star
63

example-fsharp

Example of codecov in fsharp
F#
6
star
64

example-actions-bundled

Python
5
star
65

codecov-demo-full

JavaScript
5
star
66

codecov-racket

Codecov support for Cover.
Racket
5
star
67

opentelem-node

A WIP OpenTelemetry Exporter for Runtime Insights
JavaScript
4
star
68

example-erlang

Erlang
4
star
69

example-cpp

4
star
70

media

Press and marketing resources
3
star
71

example-xtend

Xtend coverage example
Xtend
3
star
72

example-scala-maven

Scala via Maven coverage example
Scala
3
star
73

ruby-standard-2

Codecov coverage standard for Ruby using Codecov's Bash uploader
Ruby
3
star
74

nginx

Dockerfile
3
star
75

example-haskell

3
star
76

example-delphi

2
star
77

ruby-standard-1

Codecov coverage standard for Ruby using the Codecov gem
Ruby
2
star
78

example-csharp-sharpcover

C#
2
star
79

example-kotlin-flat

Kotlin codecov example with standard file structure
Kotlin
2
star
80

opentelem-python

Open Telemetry Python Prototype
Python
2
star
81

codecov-javascript-bundler-plugins

Set of bundler plugins that allow users to upload bundle stats to Codecov.
TypeScript
2
star
82

codecov-bitrise

Shell
1
star
83

node-static-alpine

Internal Node builder for the Alpine version of the uploader
1
star
84

example-gradle-multiproject

Java
1
star
85

example-java-ant

1
star
86

impact-analysis-example-laravel

An example repository demonstrating runtime insights with Laravel
PHP
1
star
87

xcode-poc

Swift
1
star
88

ci-repo

debug and ci only
Python
1
star
89

prometheus

Shell
1
star
90

impact-analysis-example-ruby

Ruby
1
star
91

example-javascript

JavaScript
1
star
92

codecov-ats

GitHub Action that uploads returns selected test labels to CI ☂️
Shell
1
star
93

.github

Community Health Files for the Codecov Organization
1
star
94

engineering-team

This is a general repo to use with GH Projects
1
star
95

grafana

Dockerfile
1
star
96

node-alpine-static

Builds a fully static copy of NodeJS from source to be used by codecov/uploader
1
star
97

codecov-interview-api

Python
1
star
98

example-azure-pipelines

Azure Pipelines coverage example
Python
1
star
99

fork-test

Python
1
star
100

impact-analysis-example-python

HTML
1
star