Skip to content

Latest commit

 

History

18 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Codecov Vala Example

Guide

Travis Setup

Add to your .travis.yml file.

language: c
after_success:
  - bash <(curl -s https://codecov.io/bash)

Produce Coverage Reports

Since Vala translate to C, the usage same directives for C/C++ apply. The --ccode and --debug flags have to be specified so that the C coverage can be properly mapped to the original sources.

valac --debug --ccode hello.vala
gcc $(pkg-config --cflags --libs glib-2.0 gobject-2.0) -ftest-coverage -fprofile-arcs -o hello hello.c
./hello
gcov hello.vala

Meson

To enable coverage with Meson, specify the -D b_coverage=true project option.

mkdir build && cd build
meson -D b_coverage=true ..
ninja
ninja test

Caveats

Private Repos

Add to your .travis.yml file.

after_success:
  - bash <(curl -s https://codecov.io/bash) -t uuid-repo-token
  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 contact email our Support at support@codecov.io

About

No description, website, or topics provided.

Resources

Security policy

Stars

12 stars

Watchers

12 watching

Forks

Releases

Packages

Used by

Contributors

Languages