summaryrefslogtreecommitdiffstats
path: root/clang-tidy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tidy.sh')
-rwxr-xr-xclang-tidy.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang-tidy.sh b/clang-tidy.sh
new file mode 100755
index 000000000..34cfb26e7
--- /dev/null
+++ b/clang-tidy.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+set -e
+
+FIXES_FILE="tidy-fixes.yaml"
+REGEX="/cuberite/src/\.?[^\.]"
+# TODO: Add -quiet when Circle CI is updated to 2.0 with a newer version of Ubuntu
+ARGS="-header-filter $REGEX -export-fixes $FIXES_FILE "$@" $REGEX"
+
+mkdir -p tidy-build
+cd tidy-build
+cmake --target Cuberite -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
+
+if run-clang-tidy.py $ARGS; then
+ echo "clang-tidy: No violations found"
+else
+ echo "clang-tidy: Found violations"
+ exit 1
+fi