Skip to content

Commit

Permalink
Merge pull request #312 from dpaulat/feature/clang-tidy-updates
Browse files Browse the repository at this point in the history
clang-tidy Workflow Fixes
  • Loading branch information
dpaulat authored Dec 1, 2024
2 parents fd7de65 + a287789 commit 7b938f9
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 7 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/clang-tidy-comments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Post clang-tidy Review Comments

on:
workflow_run:
workflows: ["clang-tidy-review"]
types:
- completed

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Post Comments
uses: ZedThree/clang-tidy-review/[email protected]
with:
lgtm_comment_body: ''
annotations: false
max_comments: 25
num_comments_as_exitcode: false
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
--cmake-command='' \
--max-comments=25 \
--lgtm-comment-body='' \
--split_workflow=false \
--split_workflow=true \
--annotations=false \
--parallel=0
rsync -avzh --ignore-missing-args clang-tidy-review-output.json ../
Expand Down
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-linux_clang-17
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=clang
compiler.cppstd=20
compiler.libcxx=libstdc++11
compiler.version=17
os=Linux
os=Linux
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-linux_gcc-11
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=gcc
compiler.cppstd=20
compiler.libcxx=libstdc++11
compiler.version=11
os=Linux
os=Linux
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-linux_gcc-12
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=gcc
compiler.cppstd=20
compiler.libcxx=libstdc++11
compiler.version=12
os=Linux
os=Linux
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-linux_gcc-13
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=gcc
compiler.cppstd=20
compiler.libcxx=libstdc++11
compiler.version=13
os=Linux
os=Linux
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-linux_gcc-14
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=gcc
compiler.cppstd=20
compiler.libcxx=libstdc++11
compiler.version=14
os=Linux
os=Linux
2 changes: 1 addition & 1 deletion tools/conan/profiles/scwx-win64_msvc2022
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler=msvc
compiler.cppstd=20
compiler.runtime=dynamic
compiler.version=194
os=Windows
os=Windows

0 comments on commit 7b938f9

Please sign in to comment.