diff options
author | Jiri Suchan <yed@vanyli.net> | 2022-06-30 11:14:07 +0900 |
---|---|---|
committer | Jiri Suchan <yed@vanyli.net> | 2022-08-19 20:32:13 +0900 |
commit | 388d35b74d8919b251faae9e24af50476f12b1a2 (patch) | |
tree | 6e984d73605bf3de867722bd88e1ee888a351fea /misc/scripts | |
parent | b04593c22bd5e88d24f1be19422696e7bde584f6 (diff) |
ci: add basic test pipeline for shader builders
Diffstat (limited to 'misc/scripts')
-rwxr-xr-x | misc/scripts/clang_format.sh | 3 | ||||
-rwxr-xr-x | misc/scripts/pytest_builders.sh | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/misc/scripts/clang_format.sh b/misc/scripts/clang_format.sh index 2b7179f5be..b7c577d5fb 100755 --- a/misc/scripts/clang_format.sh +++ b/misc/scripts/clang_format.sh @@ -7,7 +7,8 @@ set -uo pipefail # Loops through all code files tracked by Git. git ls-files -- '*.c' '*.h' '*.cpp' '*.hpp' '*.cc' '*.hh' '*.cxx' '*.m' '*.mm' '*.inc' '*.java' '*.glsl' \ - ':!:.git/*' ':!:thirdparty/*' ':!:platform/android/java/lib/src/com/google/*' ':!:*-so_wrap.*' | + ':!:.git/*' ':!:thirdparty/*' ':!:platform/android/java/lib/src/com/google/*' ':!:*-so_wrap.*' \ + ':!:tests/python_build/*' | while read -r f; do # Run clang-format. clang-format --Wno-error=unknown -i "$f" diff --git a/misc/scripts/pytest_builders.sh b/misc/scripts/pytest_builders.sh new file mode 100755 index 0000000000..eb2ddbcddc --- /dev/null +++ b/misc/scripts/pytest_builders.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash +set -uo pipefail + +echo "Running Python checks for builder system" +pytest ./tests/python_build |