From a0211924d328c78d374b3b79255296efe5f4d718 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Sun, 6 Aug 2023 11:10:12 -0700 Subject: [PATCH] devops: upload blob reports for headed and transport tests (#26313) This will add another (3*4 + 2)*3k = 42k tests to the combined report and should give us 100k+ tests in total per report. --- .github/workflows/tests_secondary.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index 80320ce61d..8e74f9dc4c 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -178,6 +178,12 @@ jobs: - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json if: always() shell: bash + - name: Upload blob report + if: always() && github.event_name == 'pull_request' + uses: ./.github/actions/upload-blob-report + with: + report_dir: blob-report + connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}' transport_linux: name: "Transport" @@ -204,6 +210,12 @@ jobs: - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json if: always() shell: bash + - name: Upload blob report + if: always() && github.event_name == 'pull_request' + uses: ./.github/actions/upload-blob-report + with: + report_dir: blob-report + connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}' tracing_linux: name: Tracing ${{ matrix.browser }} ${{ matrix.channel }}