Skip to content

Commit

Permalink
ci: linters: fail clang-tidy on warns
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaciak committed Feb 6, 2025
1 parent fd2915e commit 63a87a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ jobs:
ONEDNN_ACTION: configure

- name: Build oneDNN
run: .github/automation/build_linters.sh
run: |
.github/automation/build_linters.sh | tee build.log
grep -q "warning" build.log && exit 1 || true
env:
ONEDNN_ACTION: build

0 comments on commit 63a87a7

Please sign in to comment.