1
0
Fork 0

build: add progress bar to just lint-changed

This commit is contained in:
outfoxxed 2024-12-06 01:20:05 -08:00
parent 70be74e80d
commit ccf885081c
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -10,7 +10,7 @@ lint-ci:
find src -type f -name "*.cpp" -print0 | parallel -q0 --no-notice --will-cite --tty clang-tidy --load={{ env_var("TIDYFOX") }}
lint-changed:
git diff --name-only HEAD | grep "^.*\.cpp\$" | parallel --no-notice --will-cite --eta clang-tidy --load={{ env_var("TIDYFOX") }}
git diff --name-only HEAD | grep "^.*\.cpp\$" | parallel --no-notice --will-cite --tty --bar clang-tidy --load={{ env_var("TIDYFOX") }}
configure target='debug' *FLAGS='':
cmake -GNinja -B {{builddir}} \