summaryrefslogtreecommitdiff
path: root/clang-tidy-diff.sh
blob: 4d62d95c62dc1b1a95b7605c16637b2f6b60ee3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

# In settings in which build directory is different than binaryen/, we don't
# don't have this file in binaryen/, so we skip the test.
if [ ! -f compile_commands.json ]
  exit 0
fi

CLANG_DIR=$(dirname $(dirname $(which clang-tidy)))
CLANG_TIDY_DIFF=$CLANG_DIR/share/clang/clang-tidy-diff.py
MERGE_BASE=$(git merge-base master HEAD)
TIDY_MSG=$(git diff -U0 $MERGE_BASE | $CLANG_TIDY_DIFF -quiet -p1 2> /dev/null)
if [ -n "$TIDY_MSG" -a "$TIDY_MSG" != "No relevant changes found." ]
then
  echo "Run clang-tidy before committing!"
  echo
  # Run clang-tidy once again to show the error
  git diff -U0 $MERGE_BASE | $CLANG_TIDY_DIFF -quiet -p1
  exit 1
fi