Skip to content

Commit 3f8a428

Browse files
committed
fix: remove broken coveralls upload from Drone CI
The coveralls section fails on Ubuntu 24.04 because pip3 install requires a virtual environment (PEP 668), and the resulting cpp-coveralls command-not-found exit code was failing the build.
1 parent 86b977f commit 3f8a428

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

.drone/drone.sh

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -205,21 +205,6 @@ elif [ "$DRONE_JOB_BUILDTYPE" == "codecov" ]; then
205205
cd "$BOOST_ROOT/libs/$SELF"
206206
ci/travis/codecov.sh
207207

208-
# coveralls
209-
# uses multiple lcov steps from boost-ci codecov.sh script
210-
if [ -n "${COVERALLS_REPO_TOKEN}" ]; then
211-
echo "processing coveralls"
212-
pip3 install --user cpp-coveralls
213-
cd "$BOOST_CI_SRC_FOLDER"
214-
215-
export PATH=/tmp/lcov/bin:$PATH
216-
command -v lcov
217-
lcov --version
218-
219-
lcov --remove coverage.info -o coverage_filtered.info '*/test/*' '*/extra/*'
220-
cpp-coveralls --verbose -l coverage_filtered.info
221-
fi
222-
223208
elif [ "$DRONE_JOB_BUILDTYPE" == "valgrind" ]; then
224209

225210
echo '==================================> INSTALL'

0 commit comments

Comments
 (0)