diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 3025b96c3..3db3caec7 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -641,7 +641,12 @@ jobs: --token ${{github.token}} \ --actor ${{github.actor}} \ --commit ${{needs.check_and_prepare.outputs.github_ref}} \ - --run_id ${{github.run_id}} + --run_id ${{github.run_id}} + - name: Print SDK package info + run: | + if [[ "${{ github.event.inputs.packaged_sdk_run_id }}" != "" ]]; then + echo "run_id: ${{ github.event.inputs.packaged_sdk_run_id }}" + end - name: Summarize results into GitHub log run: python scripts/gha/summarize_test_results.py --dir test_results --github_log diff --git a/scripts/gha/report_build_status.py b/scripts/gha/report_build_status.py index 7bc1d5115..6f7b13999 100644 --- a/scripts/gha/report_build_status.py +++ b/scripts/gha/report_build_status.py @@ -460,7 +460,7 @@ def main(argv): logs_zip = zipfile.ZipFile(logs_compressed_data) m = get_message_from_github_log( logs_zip, - r'build-20.*/.*Fetch prebuilt.*\.txt', + r'summarize-results/.*Print SDK package info.*\.txt', r'run_id: ([0-9]+)$') if m: packaging_run = m.group(1)