summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJordan Kiley <jmkiley@users.noreply.github.com>2018-11-08 10:56:44 -0800
committerGitHub <noreply@github.com>2018-11-08 10:56:44 -0800
commit7cbd31e4561fd3fa8eaea20b16e7bf4192f9d072 (patch)
treef93c312d762a55ad9650dc9ae1a40b1ac7483146 /platform
parent30cec1b844a59449efb42da22598b7b04e7a8a3c (diff)
downloadqtlocation-mapboxgl-7cbd31e4561fd3fa8eaea20b16e7bf4192f9d072.tar.gz
Switch code coverage system to CodeCov (#13297)
Diffstat (limited to 'platform')
-rwxr-xr-xplatform/linux/scripts/coveralls.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/platform/linux/scripts/coveralls.sh b/platform/linux/scripts/coveralls.sh
deleted file mode 100755
index 57affe1e28..0000000000
--- a/platform/linux/scripts/coveralls.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-set -o pipefail
-
-command -v lcov 2> /dev/null || {
- echo "Aborting: lcov not found."
- exit 1
-}
-
-# Collect coverage data and save it into coverage.info
-lcov \
- --quiet \
- --capture \
- --no-external \
- --gcov-tool "gcov-5" \
- --directory "src/mbgl" \
- --directory "platform" \
- --directory "include/mbgl" \
- --directory "build/linux-x86_64/${BUILDTYPE}" \
- --base-directory "build/linux-x86_64/${BUILDTYPE}" \
- --output-file "build/linux-x86_64/${BUILDTYPE}/coverage.info"
-
-coveralls-lcov \
- --service-name="${COVERALLS_SERVICE_NAME}" \
- --repo-token="${COVERALLS_REPO_TOKEN}" \
- --service-job-id="${CIRCLE_BUILD_NUM}" \
- "build/linux-x86_64/${BUILDTYPE}/coverage.info"