mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/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
|
|
|
|
start_total=$(date +%s)
|
|
|
|
# We decided to have the regexp-based check disabled in favor of clang-tidy
|
|
# start=$(date +%s)
|
|
# ./check-duplicate-includes.sh |& tee /test_output/duplicate_includes_output.txt
|
|
# runtime=$(($(date +%s)-start))
|
|
# echo "Check duplicates. Done. $runtime seconds."
|
|
|
|
start=$(date +%s)
|
|
./check-style -n |& tee /test_output/style_output.txt
|
|
runtime=$(($(date +%s)-start))
|
|
echo "Check style. Done. $runtime seconds."
|
|
|
|
start=$(date +%s)
|
|
./check-whitespaces -n |& tee /test_output/whitespaces_output.txt
|
|
runtime=$(($(date +%s)-start))
|
|
echo "Check whitespaces. Done. $runtime seconds."
|
|
|
|
start=$(date +%s)
|
|
./check-workflows |& tee /test_output/workflows_output.txt
|
|
runtime=$(($(date +%s)-start))
|
|
echo "Check workflows. Done. $runtime seconds."
|
|
|
|
start=$(date +%s)
|
|
./check-submodules |& tee /test_output/submodules_output.txt
|
|
runtime=$(($(date +%s)-start))
|
|
echo "Check submodules. Done. $runtime seconds."
|
|
|
|
runtime=$(($(date +%s)-start_total))
|
|
echo "Check style total. Done. $runtime seconds."
|