bfbf1b8c9b
This patch adds a script for validating YAML files, and replaces the existing JSON checks with one largely identical to the YAML check. This also provides a script that can be installed as a pre-commit hook that will perform this checks when you commit changes. You can install the hook by running tools/pre-commit-hook --install. Change-Id: Ib4742a9db062362cfa61d669c691151bc1ca376c
46 lines
898 B
Bash
Executable File
46 lines
898 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPLEVEL=$(git rev-parse --show-toplevel)
|
|
RES=0
|
|
|
|
cd $TOPLEVEL
|
|
|
|
if [ "$1" == "--install" ]; then
|
|
ln -sf ../../tools/pre-commit-hook .git/hooks/pre-commit
|
|
exit
|
|
fi
|
|
|
|
tmpdir=$(mktemp -d precommit.XXXXXX) || exit 1
|
|
trap "rm -rf $TOPLEVEL/$tmpdir" 0
|
|
|
|
git diff --cached --name-only --diff-filter=ACMR |
|
|
xargs git checkout-index --prefix=$tmpdir/ --
|
|
|
|
cd $tmpdir
|
|
|
|
echo "=== starting pre-commit checks ==="
|
|
|
|
echo "Checking the following files:"
|
|
|
|
find . -type f
|
|
|
|
echo "=== bashate checks ==="
|
|
|
|
find . -type f -print0 |
|
|
xargs -0 --no-run-if-empty egrep -lZ '^#!/bin/(ba)?sh' |
|
|
xargs -0 bashate || RES=1
|
|
|
|
echo "=== yaml checks ==="
|
|
|
|
find . -name '*.yaml' -print0 |
|
|
xargs -0 --no-run-if-empty python ${TOPLEVEL}/tools/try-parse-yaml.py
|
|
|
|
echo "=== json checks ==="
|
|
|
|
find . -name '*.json' -print0 |
|
|
xargs -0 -n1 --no-run-if-empty python -mjson.tool \
|
|
|| RES=1
|
|
|
|
exit $RES
|
|
|