Merge pull request #59778 from ClickHouse/ci_await_test

CI: ci test await
This commit is contained in:
Max K 2024-02-08 20:23:09 +01:00 committed by GitHub
commit 7c72bb4846
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1274,7 +1274,7 @@ def _update_gh_statuses_action(indata: Dict, s3: S3Helper) -> None:
with concurrent.futures.ThreadPoolExecutor() as executor:
futures = []
for job in job_digests:
if job not in jobs_to_skip or job not in jobs_to_do:
if job not in jobs_to_skip and job not in jobs_to_do:
# no need to create status for job that are not supposed to be executed
continue
if CI_CONFIG.is_build_job(job):