CI: Do not skip Build report and status fix

This commit is contained in:
Max Kainov 2024-10-23 14:45:10 +02:00
parent 606cef315b
commit b56e819623
2 changed files with 8 additions and 3 deletions

View File

@ -168,9 +168,12 @@ class CiSettings:
to_deny = False to_deny = False
if self.include_keywords: if self.include_keywords:
# do not exclude builds # never exclude builds, build report, style check
if job == CI.JobNames.STYLE_CHECK or CI.is_build_job(job): if (
# never exclude Style Check by include keywords job == CI.JobNames.STYLE_CHECK
or CI.is_build_job(job)
or job == CI.JobNames.BUILD_CHECK
):
return True return True
for keyword in self.include_keywords: for keyword in self.include_keywords:
if keyword in CI.Utils.normalize_string(job): if keyword in CI.Utils.normalize_string(job):

View File

@ -211,6 +211,7 @@ class TestCIOptions(unittest.TestCase):
"Integration tests (release)", "Integration tests (release)",
"Integration tests (asan)", "Integration tests (asan)",
"Integration tests flaky check (asan)", "Integration tests flaky check (asan)",
"Builds",
], ],
) )
@ -338,5 +339,6 @@ class TestCIOptions(unittest.TestCase):
"package_msan", "package_msan",
"package_ubsan", "package_ubsan",
"binary_release", "binary_release",
"Builds",
], ],
) )