File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 47
47
build-on-linux :
48
48
strategy :
49
49
matrix :
50
- runs-on : [ubuntu-20.04, ubuntu-22.04]
50
+ runs-on : [ubuntu-20.04, ubuntu-22.04, ubuntu-latest ]
51
51
compiler : [g++, clang++]
52
52
runs-on : ${{ matrix.runs-on }}
53
53
steps :
72
72
xvfb-run -a meson test -C build --verbose --no-stdsplit
73
73
74
74
codecov :
75
- runs-on : ubuntu-22.04
75
+ runs-on : ubuntu-latest
76
76
permissions :
77
77
checks : write
78
78
pull-requests : write
@@ -94,14 +94,14 @@ jobs:
94
94
xvfb-run -a meson test -C build --verbose --no-stdsplit
95
95
- name : lcov
96
96
run : |
97
- lcov --directory . --capture --output-file coverage.info; # capture coverage info
97
+ lcov --ignore-errors mismatch -- directory . --capture --output-file coverage.info; # capture coverage info
98
98
lcov --remove coverage.info '/usr/*' --output-file coverage.info; # filter out system
99
99
lcov --remove coverage.info '*Test*' --output-file coverage.info; # filter out system
100
100
lcov --remove coverage.info '*gtest*' --output-file coverage.info; # filter out system
101
101
lcov --list coverage.info; #debug info
102
102
# https://docs.codecov.com/docs/quick-start
103
103
- name : " Upload coverage reports to Codecov"
104
- uses : codecov/codecov-action@v4
104
+ uses : codecov/codecov-action@v5
105
105
env :
106
106
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
107
107
with :
You can’t perform that action at this time.
0 commit comments