mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-04 19:21:42 +00:00
Fix coverage github action by using clang++ without a specific version (#769)
Github fails to find clang++-10. Since we install llvm without a specific version number, we shouldn't use clang++-10 with a version number. I tried installing llvm-10, but that package is not available on github (any more?).
This commit is contained in:
parent
9095fc4b83
commit
91302d1d4c
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -89,7 +89,7 @@ jobs:
|
|||
sudo apt install llvm
|
||||
- name: make coverage
|
||||
run: |
|
||||
CXX=clang++-10 make -j2 config=coverage native=1 coverage
|
||||
CXX=clang++ make -j2 config=coverage native=1 coverage
|
||||
- name: upload coverage
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue