Merge pull request #3947 from awesomeWM/fix-coverage2

Move the C coverage to the CodeCov GitHub Action
This commit is contained in:
mergify[bot] 2024-10-26 14:09:17 +00:00 committed by GitHub
commit 2b7006fb45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 17 deletions

View File

@ -240,10 +240,6 @@ jobs:
if: matrix.coverage if: matrix.coverage
run: sudo -H luarocks install cluacov run: sudo -H luarocks install cluacov
- name: Install codecov.io uploader
if: matrix.coverage == 'codecov'
run: wget -O /tmp/codecov-bash https://codecov.io/bash
# Check out repository to ${{ github.workspace }} # Check out repository to ${{ github.workspace }}
# Automatically picks the current branch/PR # Automatically picks the current branch/PR
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -308,7 +304,7 @@ jobs:
run: cd "${{ github.workspace }}/build" && make check-unit run: cd "${{ github.workspace }}/build" && make check-unit
- name: Run examples tests - name: Run examples tests
run: cd "${{ github.workspace }}/build" && make check-examples run: cd "${{ github.workspace }}/build" && make check-examples -j24
- name: Run requires tests - name: Run requires tests
if: matrix.coverage if: matrix.coverage
@ -322,15 +318,7 @@ jobs:
run: | run: |
luacov luacov
- name: Upload Lua code coverage report - name: Generate C coverage report
if: matrix.coverage == 'codecov'
uses: codecov/codecov-action@v3
with:
files: "${{ github.workspace }}/build/luacov.report.out"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload C code coverage report
if: matrix.coverage == 'codecov' if: matrix.coverage == 'codecov'
run: | run: |
# Report coverage for each .gcno file separately. # Report coverage for each .gcno file separately.
@ -349,9 +337,22 @@ jobs:
# with Code Climate. # with Code Climate.
find "gcov.$i" -maxdepth 1 -type f -name '#usr#*.gcov' -delete find "gcov.$i" -maxdepth 1 -type f -name '#usr#*.gcov' -delete
done done
# Upload to Codecov. - name: Upload Lua code coverage report
bash /tmp/codecov-bash -X gcov -X coveragepy -F gcov if: matrix.coverage == 'codecov'
uses: codecov/codecov-action@v3
with:
files: "${{ github.workspace }}/build/luacov.report.out"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload C code coverage report
if: matrix.coverage == 'codecov'
uses: codecov/codecov-action@v3
with:
files: "${{ github.workspace }}/build/*/*.gcov"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# `check-qa` is the only test that doesn't get a coverage report, so it has to run after all of that. # `check-qa` is the only test that doesn't get a coverage report, so it has to run after all of that.
- name: Run qa tests - name: Run qa tests