Add missing files to digests

This commit is contained in:
Raúl Marín 2024-01-18 13:25:36 +01:00
parent 316669b90f
commit cd4aefcddb

View File

@ -82,6 +82,8 @@ class BuildConfig:
"./contrib/libmetrohash", "./contrib/libmetrohash",
"./contrib/update-submodules.sh", "./contrib/update-submodules.sh",
"./contrib/CMakeLists.txt", "./contrib/CMakeLists.txt",
"./CMakeLists.txt",
"./PreLoad.cmake",
"./cmake", "./cmake",
"./base", "./base",
"./programs", "./programs",
@ -133,19 +135,32 @@ install_check_digest = DigestConfig(
include_paths=["./tests/ci/install_check.py"], include_paths=["./tests/ci/install_check.py"],
docker=["clickhouse/install-deb-test", "clickhouse/install-rpm-test"], docker=["clickhouse/install-deb-test", "clickhouse/install-rpm-test"],
) )
statless_check_digest = DigestConfig( stateless_check_digest = DigestConfig(
include_paths=["./tests/queries/0_stateless/"], include_paths=[
"./tests/queries/0_stateless/",
"./tests/clickhouse-test",
"./tests/*.txt",
],
exclude_files=[".md"], exclude_files=[".md"],
docker=["clickhouse/stateless-test"], docker=["clickhouse/stateless-test"],
) )
stateful_check_digest = DigestConfig( stateful_check_digest = DigestConfig(
include_paths=["./tests/queries/1_stateful/"], include_paths=[
"./tests/queries/1_stateful/",
"./tests/clickhouse-test",
"./tests/*.txt",
],
exclude_files=[".md"], exclude_files=[".md"],
docker=["clickhouse/stateful-test"], docker=["clickhouse/stateful-test"],
) )
# FIXME: which tests are stresstest? stateless?
stress_check_digest = DigestConfig( stress_check_digest = DigestConfig(
include_paths=["./tests/queries/0_stateless/"], include_paths=[
"./tests/queries/0_stateless/",
"./tests/queries/1_stateful/",
"./tests/clickhouse-test",
"./tests/*.txt",
],
exclude_files=[".md"], exclude_files=[".md"],
docker=["clickhouse/stress-test"], docker=["clickhouse/stress-test"],
) )
@ -209,7 +224,7 @@ bugfix_validate_check = DigestConfig(
) )
# common test params # common test params
statless_test_common_params = { statless_test_common_params = {
"digest": statless_check_digest, "digest": stateless_check_digest,
"run_command": 'functional_test_check.py "$CHECK_NAME" $KILL_TIMEOUT', "run_command": 'functional_test_check.py "$CHECK_NAME" $KILL_TIMEOUT',
"timeout": 10800, "timeout": 10800,
} }