Merge pull request #9526 from ColinKinloch/choose_clang_format

ci: Allow setting clang-format binary
This commit is contained in:
liamwhite 2022-12-30 15:20:20 -05:00 committed by GitHub
commit 88f5d38b93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
.ci/scripts/format/script.sh Normal file → Executable file
View file

@ -10,7 +10,7 @@ if grep -nrI '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .ci* dis
fi
# Default clang-format points to default 3.5 version one
CLANG_FORMAT=clang-format-12
CLANG_FORMAT=${CLANG_FORMAT:-clang-format-12}
$CLANG_FORMAT --version
if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then