-
Notifications
You must be signed in to change notification settings - Fork 943
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1112 from libcpr/feature/clang_tidy_format_update
Clang-{Tidy,Format} Update
- Loading branch information
Showing
9 changed files
with
154 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,9 @@ jobs: | |
steps: | ||
- name: Update package list | ||
run: sudo dnf update -y | ||
- name: Install dependencies | ||
run: sudo dnf install -y openssl-devel cmake git gcc clang ninja-build | ||
- name: Install clang-tidy | ||
- name: Install clang-format | ||
run: sudo dnf install -y clang-tools-extra | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Check format | ||
uses: RafikFarhad/[email protected] | ||
with: | ||
sources: "include/**/*.hpp,include/**/*.cpp,cpr/**/*.hpp,cpr/**/*.cpp" | ||
style: "file" | ||
run: bash scripts/check_clang_format.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,8 +47,10 @@ _site/ | |
*.swp | ||
|
||
# VSCode | ||
.vscode/ | ||
.vscode/* | ||
!.vscode/tasks.json | ||
.vs/ | ||
!.vs/tasks.json | ||
|
||
# clangd | ||
.cache/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "🗑️ Delete build dir", | ||
"type": "shell", | ||
"command": "${workspaceFolder}/scripts/delete_build_dir.sh", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"clear": true | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
} | ||
}, | ||
{ | ||
"label": "📝 Run clang-format", | ||
"type": "shell", | ||
"command": "${workspaceFolder}/scripts/run_clang_format.sh", | ||
"args": [ | ||
"cpr", | ||
"include", | ||
"test" | ||
], | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"clear": true | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
} | ||
}, | ||
{ | ||
"label": "📑 Check clang-format", | ||
"type": "shell", | ||
"command": "${workspaceFolder}/scripts/check_clang_format.sh", | ||
"args": [ | ||
"cpr", | ||
"include", | ||
"test" | ||
], | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build" | ||
}, | ||
"presentation": { | ||
"clear": true | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
# Based on: https://gist.github.com/leilee/1d0915a583f8f29414cc21cd86e7151b | ||
# Checks if all files are formatted based on the clang-format formatting rules. | ||
# Execute as follows: | ||
# ./scripts/check_clang_format.sh tests src | ||
|
||
printf "📑 Checking if your code fulfills all clang-format rules...\n" | ||
|
||
RET_CODE=0 | ||
|
||
function format() { | ||
for f in $(find $@ -name '*.h' -or -name '*.hpp' -or -name '*.c' -or -name '*.cpp'); do | ||
clang-format -i --dry-run --Werror --style=file ${f}; | ||
ret=$? | ||
if [ $ret -ne 0 ]; then | ||
RET_CODE=$ret | ||
fi | ||
done | ||
|
||
echo "~~~ $@ directory checked ~~~"; | ||
} | ||
|
||
# Check all of the arguments first to make sure they're all directories | ||
for dir in "$@"; do | ||
if [ ! -d "${dir}" ]; then | ||
echo "${dir} is not a directory"; | ||
else | ||
format ${dir}; | ||
fi | ||
done | ||
|
||
RED='\033[0;31m' | ||
GREEN='\033[0;32m' | ||
NC='\033[0m' | ||
|
||
if [ $RET_CODE -eq 0 ]; then | ||
printf "✅ ${GREEN}Everything up to standard :party: ${NC}\n" | ||
else | ||
printf "❌ ${RED}Not up to formatting standard :sad_face: ${NC}\n" | ||
echo "Try running run_clang_format.sh to format all files." | ||
fi | ||
|
||
exit $RET_CODE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
printf "🗑️ Clearing your build directory...\n" | ||
rm -rf build/* | ||
|
||
GREEN='\033[0;32m' | ||
NC='\033[0m' | ||
|
||
printf "✅ ${GREEN}Done. Build directory deleted.${NC}\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# Based on: https://gist.github.com/leilee/1d0915a583f8f29414cc21cd86e7151b | ||
# Run from the project root directory as follows: | ||
# ./scripts/run_clang_format.sh tests src | ||
|
||
printf "📝 Running clang-format...\n" | ||
|
||
function format() { | ||
for f in $(find $@ -name '*.h' -or -name '*.hpp' -or -name '*.c' -or -name '*.cpp'); do | ||
echo "format ${f}"; | ||
clang-format -i --style=file ${f}; | ||
done | ||
|
||
echo "~~~ $@ directory formatted ~~~"; | ||
} | ||
|
||
# Check all of the arguments first to make sure they're all directories | ||
for dir in "$@"; do | ||
if [ ! -d "${dir}" ]; then | ||
echo "${dir} is not a directory"; | ||
else | ||
format ${dir}; | ||
fi | ||
done | ||
|
||
GREEN='\033[0;32m' | ||
NC='\033[0m' | ||
|
||
printf "✅ ${GREEN}Done. All files were formatted (if required).${NC}\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters