We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb23de3 commit c9e4125Copy full SHA for c9e4125
tests/ci/build_report_check.py
@@ -139,7 +139,8 @@ def main():
139
additional_files=[report_path],
140
).dump()
141
142
- if summary_status == ERROR:
+ # We should fail the report job to rerun it in the following attempts
143
+ if summary_status != SUCCESS:
144
sys.exit(1)
145
146
tests/ci/ci.py
@@ -2121,8 +2121,6 @@ def main() -> int:
2121
pr_info,
2122
dump_to_file=True,
2123
)
2124
- if job_report.status != SUCCESS:
2125
- exit_code = 1
2126
if not pr_info.is_merge_queue:
2127
# in the merge queue mergeable status must be set only in FinishCheck (last job in wf)
2128
update_mergeable_check(
0 commit comments