Skip to content

Commit

Permalink
Remove compatibility mode
Browse files Browse the repository at this point in the history
  • Loading branch information
pzxmsry committed Jan 15, 2024
1 parent 1112f5b commit 8e6615b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cmake_ctest_multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ jobs:
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: testLS
run: ls -la /usr/bin | grep gcov

- name: Install lcov
run: sudo apt update && sudo apt install lcov
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -96,7 +99,7 @@ jobs:

- name: Gather coverage
working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: lcov --compat-libtool --capture --directory . | sed s@^SF:%s/@SF:@ > lcov.info
run: lcov --capture --directory . | sed s@^SF:%s/@SF:@ > lcov.info
if: ${{ matrix.os == 'ubuntu-latest' }}

- name: Coveralls Parallel
Expand Down

0 comments on commit 8e6615b

Please sign in to comment.