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.
This commit is contained in:
parent
3eb59b873a
commit
a0211924d3
12
.github/workflows/tests_secondary.yml
vendored
12
.github/workflows/tests_secondary.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue