Skip to content

Commit a291c04

Browse files
committed
[#382] Update gcov commands. - Flags
1 parent 7545da6 commit a291c04

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: .github/workflows/build.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ jobs:
4343

4444
- name: Internal Build Script
4545
working-directory: ${{github.workspace}}
46-
run: bash ${GITHUB_WORKSPACE}/support/scripts/build_internal.sh
46+
run: |
47+
export CFLAGS="-fprofile-arcs -ftest-coverage -fcondition-coverage -g"
48+
bash ${GITHUB_WORKSPACE}/support/scripts/build_internal.sh
4749
48-
- name: Code-Coverage
49-
working-directory: ${{github.workspace}}
50-
run: make gcov
50+
# - name: Code-Coverage
51+
# working-directory: ${{github.workspace}}
52+
# run: make gcov
5153

5254
- name: Upload
5355
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)