This commit is contained in:
parent
b58e022389
commit
f0e09cab86
1 changed files with 5 additions and 5 deletions
10
.drone.yml
10
.drone.yml
|
@ -17,23 +17,23 @@ steps:
|
||||||
- |
|
- |
|
||||||
set -e
|
set -e
|
||||||
clang-format --version
|
clang-format --version
|
||||||
has_fomatting_issues=0
|
HAS_ISSUES=0
|
||||||
|
|
||||||
for file in $(find ./modules -name '*.?pp'); do
|
for file in $(find ./modules -name '*.?pp'); do
|
||||||
echo "Checking format for $file"
|
echo "Checking format for $file"
|
||||||
if ! clang-format --dry-run --Werror "$file"; then
|
if ! clang-format --dry-run --Werror "$file"; then
|
||||||
echo "❌ Formatting issue detected in $file"
|
echo "❌ Formatting issue detected in $file"
|
||||||
has_fomatting_issues=1
|
HAS_ISSUES=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$has_fomatting_issues" -eq 0 ]; then
|
if [ "$HAS_ISSUES" -eq 0 ]; then
|
||||||
echo "✅ All files are properly formatted! Well done! ^~^"
|
echo "✅ All files are properly formatted! Well done! ^~^"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Code reached here..."
|
echo "Code reached here..."
|
||||||
echo "Has formatting issues: ${has_fomatting_issues}"
|
echo "Has formatting issues: " $HAS_ISSUES"
|
||||||
exit ${has_fomatting_issues}
|
exit $HAS_ISSUES
|
||||||
---
|
---
|
||||||
|
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
|
Loading…
Add table
Reference in a new issue