Skip to content

Commit a6aba2c

Browse files
committed
ci : try to fix code coverage build
1 parent 6f6b0db commit a6aba2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/code-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
- name: Dependencies
1616
run: |
1717
sudo apt-get update
18-
sudo apt-get install build-essential gcc-8 lcov
18+
sudo apt-get install build-essential gcc-9 g++-9 lcov
1919
2020
- name: Build
21-
run: CC=gcc-8 make -j LLAMA_CODE_COVERAGE=1 tests
21+
run: CC=gcc-9 CXX=g++-9 make -j LLAMA_CODE_COVERAGE=1 tests
2222

2323
- name: Run tests
24-
run: CC=gcc-8 make test
24+
run: CC=gcc-9 CXX=g++-9 make test
2525

2626
- name: Generate coverage report
2727
run: |

0 commit comments

Comments
 (0)