We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7545da6 commit a291c04Copy full SHA for a291c04
.github/workflows/build.yml
@@ -43,11 +43,13 @@ jobs:
43
44
- name: Internal Build Script
45
working-directory: ${{github.workspace}}
46
- run: bash ${GITHUB_WORKSPACE}/support/scripts/build_internal.sh
+ run: |
47
+ export CFLAGS="-fprofile-arcs -ftest-coverage -fcondition-coverage -g"
48
+ bash ${GITHUB_WORKSPACE}/support/scripts/build_internal.sh
49
- - name: Code-Coverage
- working-directory: ${{github.workspace}}
50
- run: make gcov
+ # - name: Code-Coverage
51
+ # working-directory: ${{github.workspace}}
52
+ # run: make gcov
53
54
- name: Upload
55
uses: codecov/codecov-action@v4
0 commit comments