aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/coveralls.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/coveralls.yaml b/.github/workflows/coveralls.yaml
index 77e1a8fc..4f1a7591 100644
--- a/.github/workflows/coveralls.yaml
+++ b/.github/workflows/coveralls.yaml
@@ -23,7 +23,7 @@ jobs:
# This prevents our tests from hogging too much of the CPU and failing
# due to races.
RUST_TEST_THREADS: 2
- LLVM_PROFILE_FILE: '%h_%m.profraw'
+ LLVM_PROFILE_FILE: '/tmp/newsboat-profiles/%h_%m.profraw'
steps:
- name: Install dependencies
@@ -67,7 +67,7 @@ jobs:
run: make --jobs=3 NEWSBOAT_RUN_IGNORED_TESTS=1 ci-check
- name: Calculate test coverage
- run: grcov . --source-dir . --binary-path . --ignore-not-existing --ignore='/*' --ignore='3rd-party/*' --ignore='doc/*' --ignore='test/*' --ignore='target/*' --ignore='newsboat.cpp' --ignore='podboat.cpp' -t lcov -o coverage.lcov
+ run: grcov /tmp/newsboat-profiles/ --source-dir . --binary-path . --ignore-not-existing --ignore='/*' --ignore='3rd-party/*' --ignore='doc/*' --ignore='test/*' --ignore='target/*' --ignore='newsboat.cpp' --ignore='podboat.cpp' -t lcov -o coverage.lcov
- name: Submit coverage to Coveralls
uses: coverallsapp/github-action@v2