devops: upload blob report only for some bots in tests 2 (#24353)
For now merge-reports chokes on that many events and we end up with no report at all.
This commit is contained in:
parent
64deac85d2
commit
e036603aa3
6
.github/workflows/tests_primary.yml
vendored
6
.github/workflows/tests_primary.yml
vendored
|
|
@ -92,6 +92,12 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- name: Upload blob report
|
||||||
|
if: always() && github.event_name == 'pull_request'
|
||||||
|
uses: ./.github/actions/upload-blob-report
|
||||||
|
with:
|
||||||
|
report_dir: test-results/blob-report
|
||||||
|
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
||||||
|
|
||||||
test_test_runner:
|
test_test_runner:
|
||||||
name: Test Runner
|
name: Test Runner
|
||||||
|
|
|
||||||
138
.github/workflows/tests_secondary.yml
vendored
138
.github/workflows/tests_secondary.yml
vendored
|
|
@ -178,12 +178,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
transport_linux:
|
transport_linux:
|
||||||
name: "Transport"
|
name: "Transport"
|
||||||
|
|
@ -210,12 +204,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
tracing_linux:
|
tracing_linux:
|
||||||
name: Tracing ${{ matrix.browser }} ${{ matrix.channel }}
|
name: Tracing ${{ matrix.browser }} ${{ matrix.channel }}
|
||||||
|
|
@ -275,12 +263,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chrome_stable_win:
|
chrome_stable_win:
|
||||||
name: "Chrome Stable (Win)"
|
name: "Chrome Stable (Win)"
|
||||||
|
|
@ -303,12 +285,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chrome_stable_mac:
|
chrome_stable_mac:
|
||||||
name: "Chrome Stable (Mac)"
|
name: "Chrome Stable (Mac)"
|
||||||
|
|
@ -330,12 +306,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chromium_tot:
|
chromium_tot:
|
||||||
name: Chromium TOT ${{ matrix.os }}
|
name: Chromium TOT ${{ matrix.os }}
|
||||||
|
|
@ -367,12 +337,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chromium_tot_headed:
|
chromium_tot_headed:
|
||||||
name: Chromium TOT headed ${{ matrix.os }}
|
name: Chromium TOT headed ${{ matrix.os }}
|
||||||
|
|
@ -404,12 +368,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
firefox_beta_linux:
|
firefox_beta_linux:
|
||||||
name: "Firefox Beta (Linux)"
|
name: "Firefox Beta (Linux)"
|
||||||
|
|
@ -431,12 +389,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
firefox_beta_win:
|
firefox_beta_win:
|
||||||
name: "Firefox Beta (Win)"
|
name: "Firefox Beta (Win)"
|
||||||
|
|
@ -459,12 +411,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
firefox_beta_mac:
|
firefox_beta_mac:
|
||||||
name: "Firefox Beta (Mac)"
|
name: "Firefox Beta (Mac)"
|
||||||
|
|
@ -486,12 +432,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_stable_mac:
|
edge_stable_mac:
|
||||||
name: "Edge Stable (Mac)"
|
name: "Edge Stable (Mac)"
|
||||||
|
|
@ -513,12 +453,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_stable_win:
|
edge_stable_win:
|
||||||
name: "Edge Stable (Win)"
|
name: "Edge Stable (Win)"
|
||||||
|
|
@ -541,12 +475,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_stable_linux:
|
edge_stable_linux:
|
||||||
name: "Edge Stable (Linux)"
|
name: "Edge Stable (Linux)"
|
||||||
|
|
@ -568,12 +496,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_beta_mac:
|
edge_beta_mac:
|
||||||
name: "Edge Beta (Mac)"
|
name: "Edge Beta (Mac)"
|
||||||
|
|
@ -595,12 +517,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_beta_win:
|
edge_beta_win:
|
||||||
name: "Edge Beta (Win)"
|
name: "Edge Beta (Win)"
|
||||||
|
|
@ -623,12 +539,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_beta_linux:
|
edge_beta_linux:
|
||||||
name: "Edge Beta (Linux)"
|
name: "Edge Beta (Linux)"
|
||||||
|
|
@ -650,12 +560,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_dev_mac:
|
edge_dev_mac:
|
||||||
name: "Edge Dev (Mac)"
|
name: "Edge Dev (Mac)"
|
||||||
|
|
@ -677,12 +581,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_dev_win:
|
edge_dev_win:
|
||||||
name: "Edge Dev (Win)"
|
name: "Edge Dev (Win)"
|
||||||
|
|
@ -705,12 +603,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
edge_dev_linux:
|
edge_dev_linux:
|
||||||
name: "Edge Dev (Linux)"
|
name: "Edge Dev (Linux)"
|
||||||
|
|
@ -732,12 +624,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chrome_beta_linux:
|
chrome_beta_linux:
|
||||||
name: "Chrome Beta (Linux)"
|
name: "Chrome Beta (Linux)"
|
||||||
|
|
@ -759,12 +645,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chrome_beta_win:
|
chrome_beta_win:
|
||||||
name: "Chrome Beta (Win)"
|
name: "Chrome Beta (Win)"
|
||||||
|
|
@ -787,12 +667,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
chrome_beta_mac:
|
chrome_beta_mac:
|
||||||
name: "Chrome Beta (Mac)"
|
name: "Chrome Beta (Mac)"
|
||||||
|
|
@ -814,12 +688,6 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
||||||
build-playwright-driver:
|
build-playwright-driver:
|
||||||
name: "build-playwright-driver"
|
name: "build-playwright-driver"
|
||||||
|
|
@ -856,9 +724,3 @@ jobs:
|
||||||
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
|
||||||
if: always()
|
if: always()
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Upload blob report
|
|
||||||
if: always() && github.event_name == 'pull_request'
|
|
||||||
uses: ./.github/actions/upload-blob-report
|
|
||||||
with:
|
|
||||||
report_dir: test-results/blob-report
|
|
||||||
connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}'
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue