Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@krzysztof-jusiak
Created December 18, 2015 08:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krzysztof-jusiak/a1523507fcc5d18cdbe2 to your computer and use it in GitHub Desktop.
Save krzysztof-jusiak/a1523507fcc5d18cdbe2 to your computer and use it in GitHub Desktop.
#!/bin/bash
pushd .
dir=$(pwd)
cd $2
$1 --preserve-paths --relative-only $(find $dir/$3 -iname "*.gcda") >/dev/null
echo "#!/usr/bin/python
import json,sys,codecs
sys.stdout.write(json.dumps(codecs.getreader('ISO-8859-1')(sys.stdin).read()))
" > /tmp/json_encode.py
chmod +x /tmp/json_encode.py
cat >$dir/coverage.json <<EOF
{
"service_name": "travis-ci",
"service_job_id": "${TRAVIS_JOB_ID}",
"run_at": "$(date --iso-8601=s)",
"repo_token" : "$5",
"source_files": [
EOF
for file in $(find . -iname "*.gcov" -print); do
if [ "`head -1 $file | grep $4 | grep -v preprocessed`" ]; then
name=$(head -1 $file | grep -v preprocessed | egrep -o $4.* | xargs -i% echo include/%)
cat >> $dir/coverage.json << EOF
{
"name": "$name",
"source": $(tail -n +3 ${file} | cut -d ':' -f 3- | python /tmp/json_encode.py),
"coverage": [$(tail -n +3 ${file} | cut -d ':' -f 1 | sed -re 's%^ +%%g; s%-%null%g; s%^[#=]+$%0%;' | tr $'\n' ',' | sed -re 's%,$%%')]
},
EOF
fi
done
rm *.gcov
popd
mv coverage.json coverage.json.tmp
cat > coverage.json <(head -n -1 coverage.json.tmp) <(echo -e " }\n ]\n}")
rm coverage.json.tmp
curl -F json_file=@coverage.json https://coveralls.io/api/v1/jobs
rm -f coverage.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment