mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
CI: Do not skip Build report and status fix
This commit is contained in:
parent
606cef315b
commit
b56e819623
@ -168,9 +168,12 @@ class CiSettings:
|
||||
|
||||
to_deny = False
|
||||
if self.include_keywords:
|
||||
# do not exclude builds
|
||||
if job == CI.JobNames.STYLE_CHECK or CI.is_build_job(job):
|
||||
# never exclude Style Check by include keywords
|
||||
# never exclude builds, build report, style check
|
||||
if (
|
||||
job == CI.JobNames.STYLE_CHECK
|
||||
or CI.is_build_job(job)
|
||||
or job == CI.JobNames.BUILD_CHECK
|
||||
):
|
||||
return True
|
||||
for keyword in self.include_keywords:
|
||||
if keyword in CI.Utils.normalize_string(job):
|
||||
|
@ -211,6 +211,7 @@ class TestCIOptions(unittest.TestCase):
|
||||
"Integration tests (release)",
|
||||
"Integration tests (asan)",
|
||||
"Integration tests flaky check (asan)",
|
||||
"Builds",
|
||||
],
|
||||
)
|
||||
|
||||
@ -338,5 +339,6 @@ class TestCIOptions(unittest.TestCase):
|
||||
"package_msan",
|
||||
"package_ubsan",
|
||||
"binary_release",
|
||||
"Builds",
|
||||
],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user