aboutsummaryrefslogtreecommitdiffstats
path: root/meson/ci/upload_cov.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meson/ci/upload_cov.sh')
-rwxr-xr-xmeson/ci/upload_cov.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/meson/ci/upload_cov.sh b/meson/ci/upload_cov.sh
new file mode 100755
index 000000000..089641b47
--- /dev/null
+++ b/meson/ci/upload_cov.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+echo "Combining coverage reports..."
+coverage combine
+
+echo "Generating XML report..."
+coverage xml
+
+echo "Printing report"
+coverage report
+
+echo "Uploading to codecov..."
+codecov -f .coverage/coverage.xml -n "$1"