Skip to content

Commit 4086d40

Browse files
authored
Fix the build report status script (#1781)
1 parent 8d44726 commit 4086d40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/gha/report_build_status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def main(argv):
449449
logs_zip = zipfile.ZipFile(logs_compressed_data)
450450
m = get_message_from_github_log(
451451
logs_zip,
452-
r'check_and_prepare/.*Run if.*expanded.*then.*\.txt',
452+
r'check_and_prepare\.txt',
453453
r'\[warning\]Downloading SDK package from previous run:[^\n]*/([0-9]*)$')
454454
if m:
455455
packaging_run = m.group(1)
@@ -538,7 +538,7 @@ def main(argv):
538538
logs_zip = zipfile.ZipFile(logs_compressed_data)
539539
m = get_message_from_github_log(
540540
logs_zip,
541-
r'summarize-results/.*Summarize results into GitHub',
541+
r'summarize-results\.txt',
542542
r'\[error\]INTEGRATION TEST FAILURES\n—+\n(.*)$')
543543
if m:
544544
run['log_success'] = False

0 commit comments

Comments
 (0)