File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,9 @@ jobs:
191
191
cmake --build $GITHUB_WORKSPACE/build --target install-clang-format
192
192
cmake --build $GITHUB_WORKSPACE/build --target install-clang-tidy
193
193
cmake --build $GITHUB_WORKSPACE/build --target install-llvm-size
194
+ cmake --build $GITHUB_WORKSPACE/build --target install-llvm-cov
195
+ cmake --build $GITHUB_WORKSPACE/build --target install-llvm-profdata
196
+ cmake --build $GITHUB_WORKSPACE/build --target install-compiler-rt
194
197
# TODO this should be resolved in CMakeLists.txt
195
198
cmake --build $GITHUB_WORKSPACE/build --target install-lld || echo "skipped"
196
199
Original file line number Diff line number Diff line change @@ -103,8 +103,8 @@ def do_configure(args):
103
103
print ("# Default CI configuration will be applied. #" )
104
104
print ("#############################################" )
105
105
106
- # For clang-format and clang-tidy
107
- llvm_enable_projects += ";clang-tools-extra"
106
+ # For clang-format, clang-tidy and code coverage
107
+ llvm_enable_projects += ";clang-tools-extra;compiler-rt "
108
108
# libclc is required for CI validation
109
109
if 'libclc' not in llvm_enable_projects :
110
110
llvm_enable_projects += ';libclc'
You can’t perform that action at this time.
0 commit comments