File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ name: coverage
1010on :
1111 push :
1212 branches : [develop, master]
13- tags : ['*' ]
13+ tags : ["*" ]
1414 pull_request :
1515 workflow_dispatch :
1616
1717jobs :
1818 coverage :
1919 runs-on : ubuntu-latest
2020 container :
21- image : ghcr.io/anarthal/cpp-ci-containers/build-gcc14:1
21+ image : ghcr.io/anarthal/cpp-ci-containers/build-gcc14-lcov :1
2222 volumes :
2323 - /var/run/mysqld:/var/run/mysqld
2424 services :
2929 volumes :
3030 - /var/run/mysqld:/var/run/mysqld
3131 steps :
32- - name : Install coverage packages
33- run : |
34- DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends lcov
35-
3632 - name : Fetch code
3733 uses : actions/checkout@v4
38-
34+
3935 - name : Build code
4036 run : |
4137 python tools/ci/main.py \
4743 --variant=debug \
4844 --disable-local-sockets=off,on \
4945 --coverage=1
50-
46+
5147 - name : Generate coverage reports
5248 shell : bash
5349 run : |
6561 --output-file coverage.info \
6662 --extract all.info '*/boost/mysql*'
6763 sed "s|^SF:$HOME/boost-root/|SF:include/|g" coverage.info > $GITHUB_WORKSPACE/coverage.info
68-
64+
6965 - name : Upload coverage reports
7066 uses : codecov/codecov-action@v4
7167 with :
You can’t perform that action at this time.
0 commit comments