Skip to content

Commit a0e934b

Browse files
committed
Correct exclusion of prefix with fully qualified path.
1 parent 31ac52d commit a0e934b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
if: ${{ matrix.coverage == 'cov' }}
159159
run: |
160160
lcov --directory . --capture --output-file coverage.info
161-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
161+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
162162
lcov --list coverage.info
163163
164164
- name: Coveralls.io Upload
@@ -366,7 +366,7 @@ jobs:
366366
if: ${{ matrix.coverage == 'cov' }}
367367
run: |
368368
lcov --directory . --capture --output-file coverage.info
369-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
369+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
370370
lcov --list coverage.info
371371
372372
- name: Coveralls.io Upload
@@ -549,7 +549,7 @@ jobs:
549549
if: ${{ matrix.coverage == 'cov' }}
550550
run: |
551551
lcov --directory . --capture --output-file coverage.info
552-
lcov --remove coverage.info "/usr/*" "../prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
552+
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}/prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
553553
lcov --list coverage.info
554554
555555
- name: Coveralls.io Upload

0 commit comments

Comments
 (0)