2021-02-26 11:43:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-09-15 17:35:15 +00:00
|
|
|
# yaml check is not the best one
|
|
|
|
|
2021-02-26 12:58:13 +00:00
|
|
|
cd /ClickHouse/utils/check-style || echo -e "failure\tRepo not found" > /test_output/check_status.tsv
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check duplicates" | ts
|
2022-01-13 20:40:21 +00:00
|
|
|
./check-duplicate-includes.sh |& tee /test_output/duplicate_output.txt
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check style" | ts
|
2021-02-26 11:43:58 +00:00
|
|
|
./check-style -n |& tee /test_output/style_output.txt
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check typos" | ts
|
2021-02-26 11:43:58 +00:00
|
|
|
./check-typos |& tee /test_output/typos_output.txt
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check whitespaces" | ts
|
2021-02-26 11:43:58 +00:00
|
|
|
./check-whitespaces -n |& tee /test_output/whitespaces_output.txt
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check sorkflows" | ts
|
2022-01-13 20:40:21 +00:00
|
|
|
./check-workflows |& tee /test_output/workflows_output.txt
|
2022-02-03 13:06:21 +00:00
|
|
|
echo "Check shell scripts with shellcheck" | ts
|
2021-02-26 11:43:58 +00:00
|
|
|
./shellcheck-run.sh |& tee /test_output/shellcheck_output.txt
|
2021-02-26 12:58:13 +00:00
|
|
|
/process_style_check_result.py || echo -e "failure\tCannot parse results" > /test_output/check_status.tsv
|