42 lines
1.0 KiB
Bash
Executable File
42 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# this one used by github actions
|
|
# this scripts replaces run_gcov.sh
|
|
#
|
|
|
|
if [ ! "$1" ] || [ ! "$2" ] || [ ! "$3" ]; then
|
|
echo "No FTP Secrets, not even generating coverage"
|
|
exit 0
|
|
fi
|
|
|
|
rm -rf gcov_working_area
|
|
|
|
mkdir gcov_working_area
|
|
cd gcov_working_area
|
|
|
|
echo "Looking for source code"
|
|
find .. -name *.c* > source_files.txt
|
|
find ../../firmware/console/ -name *.c* >> source_files.txt
|
|
find ../../firmware/controllers/ -name *.c* >> source_files.txt
|
|
|
|
wc -l source_files.txt
|
|
|
|
xargs -L 1 -I {} cp {} . < source_files.txt
|
|
|
|
cp ../build/obj/* .
|
|
|
|
echo -e "\nGenerating rusEFI unit test coverage"
|
|
gcov *.c* > gcov.log 2>gcov.err
|
|
|
|
echo -e "\nCollecting rusEFI unit test coverage"
|
|
lcov --capture --directory . --output-file coverage.info
|
|
|
|
echo -e "\nGenerating rusEFI unit test HTML"
|
|
genhtml coverage.info --output-directory gcov
|
|
echo -e "\nGenerating rusEFI unit test HTML"
|
|
|
|
echo -e "\nUploading HTML"
|
|
ncftpput -m -R -v -u "$1" -p "$2" "$3" /unit_tests_coverage gcov/*
|
|
echo -e "\nHappy End."
|