mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-29 05:18:00 +00:00
CRIU is already using multiple CI systems and not just Travis. This renames all Travis related things to 'ci' to show it is actually independent of Travis. Just a simple rename. Signed-off-by: Adrian Reber <areber@redhat.com>
11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
set -x -e
|
|
|
|
# We only need to run the below for gcov-enabled builds
|
|
test -z "$GCOV" && exit 0
|
|
|
|
sudo apt-get install -qq -y lcov
|
|
gem install coveralls-lcov
|
|
sudo lcov --directory ../.. --capture --output-file coverage.info --ignore-errors graph
|
|
coveralls-lcov coverage.info
|