Skip to content

Commit a54db39

Browse files
committed
Correct exclusion of prefix with fully qualified path.
1 parent ed6b855 commit a54db39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
if: ${{ matrix.coverage == 'cov' }}
166166
run: |
167167
lcov --directory . --capture --output-file coverage.info
168-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
168+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
169169
lcov --list coverage.info
170170
171171
- name: Coveralls.io Upload
@@ -380,7 +380,7 @@ jobs:
380380
if: ${{ matrix.coverage == 'cov' }}
381381
run: |
382382
lcov --directory . --capture --output-file coverage.info
383-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
383+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
384384
lcov --list coverage.info
385385
386386
- name: Coveralls.io Upload
@@ -567,7 +567,7 @@ jobs:
567567
if: ${{ matrix.coverage == 'cov' }}
568568
run: |
569569
lcov --directory . --capture --output-file coverage.info
570-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
570+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
571571
lcov --list coverage.info
572572
573573
- name: Coveralls.io Upload

0 commit comments

Comments
 (0)