From 91302d1d4cf01b052b103d9d281567250e532813 Mon Sep 17 00:00:00 2001 From: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> Date: Fri, 2 Dec 2022 10:08:55 -0800 Subject: [PATCH] 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?). --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dbd6a495..5145e76b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: