add cmd check
This commit is contained in:
parent
8de0bef8a5
commit
4f8d45375b
|
@ -14,6 +14,7 @@ changed_files=$(git diff-index --cached $against | \
|
||||||
grep -E '[MA] .*\.(c|cpp|cc|cxx)$' | cut -d' ' -f 2)
|
grep -E '[MA] .*\.(c|cpp|cc|cxx)$' | cut -d' ' -f 2)
|
||||||
|
|
||||||
|
|
||||||
|
if which cppcheck > /dev/null; then
|
||||||
if [ -n "$changed_files" ]; then
|
if [ -n "$changed_files" ]; then
|
||||||
cppcheck --enable=warning,performance,portability --inline-suppr --error-exitcode=1 --platform=win64 --force $changed_files
|
cppcheck --enable=warning,performance,portability --inline-suppr --error-exitcode=1 --platform=win64 --force $changed_files
|
||||||
err=$?
|
err=$?
|
||||||
|
@ -24,13 +25,16 @@ if [ -n "$changed_files" ]; then
|
||||||
echo "[rt-thread][cppcheck] cppcheck ok."
|
echo "[rt-thread][cppcheck] cppcheck ok."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "cppcheck does not exist"
|
||||||
|
fi
|
||||||
|
|
||||||
# We only filter the file name with c or cpp or h file.
|
# We only filter the file name with c or cpp or h file.
|
||||||
# astyle only astyle the added file[because of code reivewer], if you want change modify file, please use [MA]
|
# astyle only astyle the added file[because of code reivewer], if you want change modify file, please use [MA]
|
||||||
changed_files=$(git diff-index --cached $against | \
|
changed_files=$(git diff-index --cached $against | \
|
||||||
grep -E '[MA] .*\.(c|cpp|h)$' | cut -d' ' -f 2)
|
grep -E '[MA] .*\.(c|cpp|h)$' | cut -d' ' -f 2)
|
||||||
|
|
||||||
|
if which astyle > /dev/null; then
|
||||||
if [ -n "$changed_files" ]; then
|
if [ -n "$changed_files" ]; then
|
||||||
astyle --style=allman --indent=spaces=4 --indent=spaces=4 --indent=spaces=4 --pad-header --pad-header --pad-header --align-pointer=name --lineend=linux --convert-tabs --verbose $changed_files
|
astyle --style=allman --indent=spaces=4 --indent=spaces=4 --indent=spaces=4 --pad-header --pad-header --pad-header --align-pointer=name --lineend=linux --convert-tabs --verbose $changed_files
|
||||||
err=$?
|
err=$?
|
||||||
|
@ -41,7 +45,9 @@ if [ -n "$changed_files" ]; then
|
||||||
echo "[rt-thread][astyle] astyle file ok"
|
echo "[rt-thread][astyle] astyle file ok"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "astyle does not exist"
|
||||||
|
fi
|
||||||
|
|
||||||
# We only filter the file name with c or cpp file.
|
# We only filter the file name with c or cpp file.
|
||||||
changed_files=$(git diff-index --cached $against | \
|
changed_files=$(git diff-index --cached $against | \
|
||||||
|
@ -49,11 +55,16 @@ changed_files=$(git diff-index --cached $against | \
|
||||||
# formatting check
|
# formatting check
|
||||||
# https://github.com/mysterywolf/formatting
|
# https://github.com/mysterywolf/formatting
|
||||||
# formatting cmd ref https://github.com/supperthomas/git_auto_script
|
# formatting cmd ref https://github.com/supperthomas/git_auto_script
|
||||||
|
if which formatting > /dev/null; then
|
||||||
if [ -n "$changed_files" ]; then
|
if [ -n "$changed_files" ]; then
|
||||||
formatting $changed_files
|
formatting $changed_files
|
||||||
echo "[rt-thread] formatting $changed_files is ok"
|
echo "[rt-thread] formatting $changed_files is ok"
|
||||||
git add $changed_files
|
git add $changed_files
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "formatting does not exist"
|
||||||
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue