Well, if we can't install llvm-10, we can only rely on clang++

This commit is contained in:
Vyacheslav Egorov 2022-12-02 18:47:35 +02:00
parent fda4560edd
commit f1afef63d7

View file

@ -86,10 +86,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: install - name: install
run: | run: |
sudo apt install llvm-10 sudo apt install llvm
- name: make coverage - name: make coverage
run: | run: |
CXX=clang++-10 make -j2 config=coverage native=1 coverage CXX=clang++ make -j2 config=coverage native=1 coverage
- name: upload coverage - name: upload coverage
uses: codecov/codecov-action@v3 uses: codecov/codecov-action@v3
with: with: