Use clang-format from CI base image
This commit is contained in:
parent
58817e34b0
commit
43efd0767f
@ -19,18 +19,18 @@ elif [[ ${OS} = "Darwin" ]] ; then
|
||||
fi
|
||||
|
||||
# Discover clang-format
|
||||
if type clang-format-14 2> /dev/null ; then
|
||||
CLANG_FORMAT=clang-format-14
|
||||
if type clang-format-11 2> /dev/null ; then
|
||||
CLANG_FORMAT=clang-format-11
|
||||
elif type clang-format 2> /dev/null ; then
|
||||
# Clang format found, but need to check version
|
||||
CLANG_FORMAT=clang-format
|
||||
V=$(clang-format --version)
|
||||
if [[ $V != *14.0* ]] ; then
|
||||
echo "clang-format is not 14.0 (returned ${V})"
|
||||
if [[ $V != *11.0* ]] ; then
|
||||
echo "clang-format is not 11.0 (returned ${V})"
|
||||
#exit 1
|
||||
fi
|
||||
else
|
||||
echo "No appropriate clang-format found (expected clang-format-14, or clang-format)"
|
||||
echo "No appropriate clang-format found (expected clang-format-11, or clang-format)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user