Skip to content

Commit

Permalink
gh-actions macos: skip coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Feb 6, 2024
1 parent 5b95a06 commit 35900ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -613,19 +613,19 @@ jobs:
find /usr/local/bin -type l -exec sh -c 'readlink -f "$1" \
| grep -q ^/Library/Frameworks/Python.framework/Versions/' _ {} \; -exec rm -v {} \;
- name: Install Homebrew Dependencies
run: brew install meson ninja gcovr
run: brew install meson ninja # gcovr
- name: Configure
run: meson setup build -Db_coverage=true
run: meson setup build # -Db_coverage=true
- name: Build
run: ninja -C build -v
- name: Test
run: meson test -C build --print-errorlogs $(meson test -C build --list | grep -v emul)
- name: Coverage Report
run: ninja -C build -v coverage-xml
- name: CodeCov.io
uses: codecov/codecov-action@v3
with:
file: ./build/meson-logs/coverage.xml
# - name: Coverage Report
# run: ninja -C build -v coverage-xml
# - name: CodeCov.io
# uses: codecov/codecov-action@v3
# with:
# file: ./build/meson-logs/coverage.xml

icc:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 35900ae

Please sign in to comment.