Skip to content

Commit

Permalink
Merge pull request ClickHouse#60863 from ClickHouse/backport/24.2/60850
Browse files Browse the repository at this point in the history
Backport ClickHouse#60850 to 24.2: CI: Fix pending status for build report in backports
  • Loading branch information
robot-ch-test-poll3 authored Mar 5, 2024
2 parents cfeaf67 + a1b401d commit cc236d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ci/build_report_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def main():
builds_for_check = CI_CONFIG.get_builds_for_report(
build_check_name,
release=pr_info.is_release(),
backport=pr_info.head_ref.startswith("backport"),
backport=pr_info.head_ref.startswith("backport/"),
)
required_builds = len(builds_for_check)
missing_builds = 0
Expand Down
2 changes: 1 addition & 1 deletion tests/ci/ci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def get_builds_for_report(
Build.PACKAGE_TSAN,
Build.PACKAGE_DEBUG,
]
if release and report_name == JobNames.BUILD_CHECK_SPECIAL:
if (release or backport) and report_name == JobNames.BUILD_CHECK_SPECIAL:
return [
Build.BINARY_DARWIN,
Build.BINARY_DARWIN_AARCH64,
Expand Down

0 comments on commit cc236d4

Please sign in to comment.