mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08: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
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…
Reference in New Issue
Block a user