Squashed 'libs/CommService/' content from commit 7ccc0fc
git-subtree-dir: libs/CommService git-subtree-split: 7ccc0fce88bbc5969df060058cf0fb57abe3bcf9
This commit is contained in:
17
libs/CLI11/.ci/build_lcov.sh
Normal file
17
libs/CLI11/.ci/build_lcov.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/env sh
|
||||
# (Source me)
|
||||
set -evx
|
||||
|
||||
LCOV_URL="http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.13.orig.tar.gz"
|
||||
cd "${DEPS_DIR}"
|
||||
|
||||
if [[ ! -f "${DEPS_DIR}/lcov/bin/lcov" ]] ; then
|
||||
echo "Downloading lcov"
|
||||
mkdir -p lcov
|
||||
travis_retry wget --no-check-certificate --quiet -O - "${LCOV_URL}" | tar --strip-components=1 -xz -C lcov
|
||||
fi
|
||||
|
||||
export PATH="${DEPS_DIR}/lcov/bin:${PATH}"
|
||||
cd "${TRAVIS_BUILD_DIR}"
|
||||
|
||||
set +evx
|
||||
Reference in New Issue
Block a user