mirror of
https://github.com/boostorg/format.git
synced 2026-01-29 19:42:09 +00:00
47 lines
1.3 KiB
Bash
Executable File
47 lines
1.3 KiB
Bash
Executable File
#! /bin/bash
|
|
#
|
|
# Copyright 2017 James E. King, III
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# Bash script to run in travis to perform codecov.io integration
|
|
#
|
|
|
|
###
|
|
### NOTE: Make sure you grab and customize .codecov.yml
|
|
###
|
|
|
|
# assumes cwd is the top level directory of the boost project
|
|
# assumes an environment variable $SELF is the boost project name
|
|
|
|
set -ex
|
|
|
|
B2_VARIANT=debug
|
|
ci/build.sh cxxflags=-fprofile-arcs cxxflags=-ftest-coverage linkflags=-fprofile-arcs linkflags=-ftest-coverage
|
|
|
|
#
|
|
# switch back to the original source code directory
|
|
# this ensures codecov doesn't get confused
|
|
#
|
|
cd $TRAVIS_BUILD_DIR
|
|
|
|
# get the version of lcov
|
|
lcov --version
|
|
|
|
# coverage files are in ../../b2 from this location
|
|
lcov --gcov-tool=gcov-7 --rc lcov_branch_coverage=1 --base-directory `pwd` --directory "$BOOST_ROOT" --capture --output-file all.info
|
|
|
|
# all.info contains all the coverage info for all projects - limit to ours
|
|
lcov --gcov-tool=gcov-7 --extract all.info "*/boost/$SELF/*" --output-file coverage.info
|
|
|
|
# dump a summary just for grins
|
|
lcov --gcov-tool=gcov-7 --list coverage.info
|
|
|
|
#
|
|
# upload to codecov.io
|
|
#
|
|
curl -s https://codecov.io/bash > .codecov
|
|
chmod +x .codecov
|
|
./.codecov -f coverage.info -X gcov -x "gcov-7"
|