Support running a specific clang-format version in CI
This commit is contained in:
parent
1a95a60f80
commit
7c0297abe8
@ -29,4 +29,4 @@ script:
|
||||
- if [ "$JANSSON_BUILD_METHOD" = "cmake" ]; then mkdir build && cd build && cmake $JANSSON_CMAKE_OPTIONS .. && cmake --build . && ctest --output-on-failure; fi
|
||||
- if [ "$JANSSON_BUILD_METHOD" = "coverage" ]; then mkdir build && cd build && cmake $JANSSON_CMAKE_OPTIONS .. && cmake --build . && cmake --build . --target coveralls; fi
|
||||
- if [ "$JANSSON_BUILD_METHOD" = "fuzzer" ]; then ./test/ossfuzz/travisoss.sh; fi
|
||||
- if [ "$JANSSON_BUILD_METHOD" = "lint" ]; then ./scripts/clang-format-ci; fi
|
||||
- if [ "$JANSSON_BUILD_METHOD" = "lint" ]; then ./scripts/clang-format-ci 9; fi
|
||||
|
@ -1,10 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
clangformat="clang-format"
|
||||
if [ -n "$1" ]; then
|
||||
clangformat="clang-format-$1"
|
||||
fi
|
||||
|
||||
errors=0
|
||||
paths=$(find . -type f -a '(' -name '*.c' -o -name '*.h' ')')
|
||||
for path in $paths; do
|
||||
in=$(cat $path)
|
||||
out=$(clang-format $path)
|
||||
out=$($clangformat $path)
|
||||
|
||||
if [ "$in" != "$out" ]; then
|
||||
diff -u -L $path -L "$path.formatted" $path - <<<$out
|
||||
|
Loading…
Reference in New Issue
Block a user