CI: Revert part of 2bde82ffa2 to fix coverage builds

This commit is contained in:
Tim Wojtulewicz 2024-05-28 09:01:21 -07:00
parent 47dd834bdb
commit ec4661f4b5

View file

@ -21,15 +21,7 @@ BASE="$(cd "$CURR" && cd ../../ && pwd)"
TMP="${CURR}/tmp.$$" TMP="${CURR}/tmp.$$"
mkdir -p $TMP mkdir -p $TMP
GCOV_CMD="" GCOV_CMD=$(which gcov)
if [ -n "${CIRRUS_TASK_NAME}" ]; then
GCOV_CMD="$(which llvm-cov-18)"
if [ -n "${GCOV_CMD}" ]; then
GCOV_CMD="${GCOV_CMD} gcov"
fi
else
GCOV_CMD="$(which gcov)"
fi
if [ -z "${GCOV_CMD}" ]; then if [ -z "${GCOV_CMD}" ]; then
echo "gcov is not installed on system, aborting" echo "gcov is not installed on system, aborting"