Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

devops: merge all "tests 2" reports #26547

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/create_test_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
- name: Merge reports
run: |
npx playwright merge-reports --reporter markdown,html ./all-blob-reports
env:
NODE_OPTIONS: --max-old-space-size=4096

- name: Upload HTML report to Azure
run: |
Expand Down
126 changes: 126 additions & 0 deletions .github/workflows/tests_secondary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,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 }}'

chrome_stable_win:
name: "Chrome Stable (Win)"
Expand All @@ -297,6 +303,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 }}'

chrome_stable_mac:
name: "Chrome Stable (Mac)"
Expand All @@ -318,6 +330,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 }}'

chromium_tot:
name: Chromium TOT ${{ matrix.os }}
Expand Down Expand Up @@ -349,6 +367,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 }}'

chromium_tot_headed:
name: Chromium TOT headed ${{ matrix.os }}
Expand Down Expand Up @@ -380,6 +404,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 }}'

firefox_beta_linux:
name: "Firefox Beta (Linux)"
Expand All @@ -401,6 +431,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 }}'

firefox_beta_win:
name: "Firefox Beta (Win)"
Expand All @@ -423,6 +459,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 }}'

firefox_beta_mac:
name: "Firefox Beta (Mac)"
Expand All @@ -444,6 +486,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 }}'

edge_stable_mac:
name: "Edge Stable (Mac)"
Expand All @@ -465,6 +513,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 }}'

edge_stable_win:
name: "Edge Stable (Win)"
Expand All @@ -487,6 +541,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 }}'

edge_stable_linux:
name: "Edge Stable (Linux)"
Expand All @@ -508,6 +568,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 }}'

edge_beta_mac:
name: "Edge Beta (Mac)"
Expand All @@ -529,6 +595,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 }}'

edge_beta_win:
name: "Edge Beta (Win)"
Expand All @@ -551,6 +623,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 }}'

edge_beta_linux:
name: "Edge Beta (Linux)"
Expand All @@ -572,6 +650,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 }}'

edge_dev_mac:
name: "Edge Dev (Mac)"
Expand All @@ -593,6 +677,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 }}'

edge_dev_win:
name: "Edge Dev (Win)"
Expand All @@ -615,6 +705,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 }}'

edge_dev_linux:
name: "Edge Dev (Linux)"
Expand All @@ -636,6 +732,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 }}'

chrome_beta_linux:
name: "Chrome Beta (Linux)"
Expand All @@ -657,6 +759,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 }}'

chrome_beta_win:
name: "Chrome Beta (Win)"
Expand All @@ -679,6 +787,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 }}'

chrome_beta_mac:
name: "Chrome Beta (Mac)"
Expand All @@ -700,6 +814,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 }}'

build-playwright-driver:
name: "build-playwright-driver"
Expand Down Expand Up @@ -736,3 +856,9 @@ 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 }}'