Compare commits
6 commits
main
...
fix/clang-
Author | SHA1 | Date | |
---|---|---|---|
1c8d4abed4 | |||
93faae4553 | |||
664a267640 | |||
f0e09cab86 | |||
b58e022389 | |||
978291bb59 |
1 changed files with 6 additions and 4 deletions
10
.drone.yml
10
.drone.yml
|
@ -17,21 +17,23 @@ steps:
|
|||
- |
|
||||
set -e
|
||||
clang-format --version
|
||||
has_fomatting_issues=0
|
||||
HAS_ISSUES=0
|
||||
|
||||
for file in $(find ./modules -name '*.?pp'); do
|
||||
echo "Checking format for $file"
|
||||
if ! clang-format --dry-run --Werror "$file"; then
|
||||
echo "❌ Formatting issue detected in $file"
|
||||
has_fomatting_issues=1
|
||||
HAS_ISSUES=1
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$has_fomatting_issues" -eq 0 ]; then
|
||||
if [ "$HAS_ISSUES" -eq 0 ]; then
|
||||
echo "✅ All files are properly formatted! Well done! ^~^"
|
||||
else
|
||||
echo "❌ Senpai! There was some formatting issues :c"
|
||||
fi
|
||||
|
||||
exit ${has_fomatting_issues}
|
||||
exit $HAS_ISSUES
|
||||
---
|
||||
|
||||
kind: pipeline
|
||||
|
|
Loading…
Add table
Reference in a new issue