2024-03-09 20:38:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# yaml check is not the best one
|
|
|
|
|
|
|
|
cd /ClickHouse/utils/check-style || echo -e "failure\tRepo not found" > /test_output/check_status.tsv
|
|
|
|
|
2024-03-09 20:38:23 +00:00
|
|
|
start_total=`date +%s`
|
|
|
|
|
|
|
|
# 40 sec - too much
|
|
|
|
# start=`date +%s`
|
2024-03-09 20:38:23 +00:00
|
|
|
# ./check-duplicate-includes.sh |& tee /test_output/duplicate_includes_output.txt
|
2024-03-09 20:38:23 +00:00
|
|
|
# runtime=$((`date +%s`-start))
|
|
|
|
# echo "Duplicates check. Done. $runtime seconds."
|
2024-03-09 20:38:23 +00:00
|
|
|
|
2024-03-09 20:38:23 +00:00
|
|
|
start=`date +%s`
|
2024-03-09 20:38:23 +00:00
|
|
|
./check-style -n |& tee /test_output/style_output.txt
|
2024-03-09 20:38:23 +00:00
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check style. Done. $runtime seconds."
|
|
|
|
|
|
|
|
start=`date +%s`
|
2024-03-09 20:38:23 +00:00
|
|
|
./check-whitespaces -n |& tee /test_output/whitespaces_output.txt
|
2024-03-09 20:38:23 +00:00
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check whitespaces. Done. $runtime seconds."
|
|
|
|
|
|
|
|
start=`date +%s`
|
2024-03-09 20:38:23 +00:00
|
|
|
./check-workflows |& tee /test_output/workflows_output.txt
|
2024-03-09 20:38:23 +00:00
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check workflows. Done. $runtime seconds."
|
|
|
|
|
|
|
|
start=`date +%s`
|
2024-03-09 20:38:23 +00:00
|
|
|
./check-submodules |& tee /test_output/submodules_output.txt
|
2024-03-09 20:38:23 +00:00
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check submodules. Done. $runtime seconds."
|
|
|
|
|
|
|
|
start=`date +%s`
|
|
|
|
./check-typos |& tee /test_output/typos_output.txt
|
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check typos. Done. $runtime seconds."
|
|
|
|
|
|
|
|
start=`date +%s`
|
|
|
|
./check-doc-aspell |& tee /test_output/docs_spelling_output.txt
|
|
|
|
runtime=$((`date +%s`-start))
|
|
|
|
echo "Check docs spelling. Done. $runtime seconds."
|
|
|
|
|
|
|
|
runtime=$((`date +%s`-start_total))
|
|
|
|
echo "Check style, total. Done. $runtime seconds."
|
|
|
|
|
2024-03-09 20:38:23 +00:00
|
|
|
|
|
|
|
# FIXME: 6 min to wait
|
|
|
|
# echo "Check shell scripts with shellcheck" | ts
|
|
|
|
# ./shellcheck-run.sh |& tee /test_output/shellcheck_output.txt
|