Skip to content

Commit

Permalink
Added back multithreading make
Browse files Browse the repository at this point in the history
  • Loading branch information
msiddhu committed Jul 15, 2024
1 parent 2233338 commit 516ea26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 2 additions & 8 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,5 @@ Checks: >

# Use existing clang-format for formatting the code
FormatStyle: 'file'
HeaderFilterRegex: '.*(opentelemetry/(?!proto)|functional).*'
# TODO: include checks: readability, cppcoreguidelines, modernize , google-readability-namespace-comments, google-readability-avoid-underscore-in-googletest-name, performance-move-const-arg






HeaderFilterRegex: '.*(opentelemetry|functional).*'
# TODO: include checks: readability, cppcoreguidelines, modernize , google-readability-namespace-comments, google-readability-avoid-underscore-in-googletest-name, performance-move-const-arg
4 changes: 3 additions & 1 deletion .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
libgmock-dev \
libgtest-dev \
libbenchmark-dev
echo "Using clang-tidy version: $(clang-tidy --version)"
# sudo -E ./ci/install_abseil.sh
# sudo -E ./ci/setup_grpc.sh -m -p protobuf -p abseil-cpp

Expand Down Expand Up @@ -64,7 +66,7 @@ jobs:
- name: clang-tidy
run: |
cd build
make 2>&1 | tee -a clang-tidy.log
make -j$(nproc) 2>&1 | tee -a clang-tidy.log
- uses: actions/upload-artifact@v4
if: success() || failure()
Expand Down

0 comments on commit 516ea26

Please sign in to comment.