Skip to content

Commit 2cb88ce

Browse files
committed
Use absolute paths to locate the coverage file
At a bit of a loss as to why it can't find the coverage file anymore so lets just use the absolute path.
1 parent 4d0d770 commit 2cb88ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
lcov --list coverage.info
5050
- codecov/upload:
5151
cli_args: '-v'
52-
file: ${HOME}/Debug-build/coverage.info
52+
file: '/home/circleci/Debug-build/coverage.info'
5353
- coverage-reporter/send_report:
54-
coverage-reports: '../Debug-build/coverage.info'
54+
coverage-reports: '/home/circleci/Debug-build/coverage.info'
5555
project-token: $CODACY_PROJECT_TOKEN
5656

5757
build_gcc_release:

0 commit comments

Comments
 (0)