travis: silence gcov output and errors flooding build log
Also added ignore paths from `codecov.yml` to the command, because
codecov-bash doesn't pull those from there. Currently its `parse_yaml`
function simply ignores arrays, so they don't even check for "ignore".
4678d212cc/codecov (L834)
This commit is contained in:
parent
2ab8602f71
commit
d09fdd78a9
1 changed files with 11 additions and 1 deletions
|
@ -87,7 +87,17 @@ configure () {
|
|||
}
|
||||
|
||||
coverage () {
|
||||
./codecov -x "llvm-cov gcov" -Z
|
||||
./codecov -Z \
|
||||
-g "./benchmark/**" \
|
||||
-g "./demo/**" \
|
||||
-g "./deps/**" \
|
||||
-g "./docs/**" \
|
||||
-g "./fonts/**" \
|
||||
-g "./mason_packages/**" \
|
||||
-g "./.sconf_temp/**" \
|
||||
-g "./scons/**" \
|
||||
-g "./test/**" \
|
||||
-x "llvm-cov gcov >/dev/null 2>&1"
|
||||
}
|
||||
|
||||
trigger_downstream() {
|
||||
|
|
Loading…
Reference in a new issue