Skip to content

Commit

Permalink
CI: remove unused stuff (lcov, ...)
Browse files Browse the repository at this point in the history
Reviewed-by: Andre Boscatto <[email protected]>
Reviewed-by: Iker Pedrosa <[email protected]>
(cherry picked from commit 65ca672)
  • Loading branch information
alexey-tikhonov committed Apr 24, 2024
1 parent db27a51 commit 06e1070
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 43 deletions.
1 change: 0 additions & 1 deletion contrib/ci/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ declare -r _DEPS_SH=

# Dependency list
declare -a DEPS_LIST=(
lcov
valgrind
)

Expand Down
42 changes: 0 additions & 42 deletions contrib/ci/misc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,46 +28,4 @@ function rm_rf_ro()
rm -Rf -- "$@"
}

# Extract line and function coverage percentage from a "genhtml" or "lcov
# --summary" output.
# Input: "genhtml" or "lcov --summary" output
# Output: lines funcs
function lcov_summary()
{
sed -ne 's/^ *\(lines\|functions\)\.*: \([0-9]\+\).*$/ \2/p' |
tr -d '\n'
echo
}

# Check if a "genhtml" or "lcov --summary" output has a minimum coverage
# percentage of lines and functions.
# Input: "genhtml" or "lcov --summary" output
# Args: min_lines min_funcs
function lcov_check()
{
declare -r min_lines="$1"; shift
declare -r min_funcs="$1"; shift
declare lines
declare funcs

read -r lines funcs < <(lcov_summary)
((lines >= min_lines && funcs >= min_funcs)) && return 0 || return 1
}

# Check if the current user belongs to a group.
# Args: group_name
function memberof()
{
declare -r group_name="$1"
declare group_id
declare id
group_id=`getent group "$group_name" | cut -d: -f3` || return 1
for id in "${GROUPS[@]}"; do
if [ "$id" == "$group_id" ]; then
return 0
fi
done
return 1
}

fi # _MISC_SH

0 comments on commit 06e1070

Please sign in to comment.