Skip to content

Commit

Permalink
ci: linters: old command test
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaciak committed Feb 10, 2025
1 parent d457200 commit dfbf331
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/pr-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,6 @@ jobs:
- name: Build oneDNN
run: |
.github/automation/build_linters.sh 2>&1 | tee build.log
echo "CHECK BUILDLOG CONTENT:"
cat build.log
echo "CHECK BUILDLOG grep:"
grep -i "warning:" build.log
echo "CHECK BUILDLOG grep and sort:"
grep -i "warning:" build.log | sort -u
echo "SUMMARY:"
SUMMARY=$(grep -i "warning:" build.log | sort -u)
echo $SUMMARY
[ -n "$SUMMARY" ] && exit 1 || true
grep -i "warning:" build.log | sort -u && exit 1 || true
env:
ONEDNN_ACTION: build

0 comments on commit dfbf331

Please sign in to comment.