Skip to content

Commit

Permalink
test: don't run headful mapper in quick WPT (#1685)
Browse files Browse the repository at this point in the history
Exclude headful mapper WPT runner from quick WPT CI action, as:
1. Mapper config is not exposed to any external users, and is used only
for dev purposes.
2. This configuration takes more then 7 minutes, while other configs are
finished in under 5.

Co-authored-by: Maksim Sadym <sadym@google.com>
  • Loading branch information
sadym-chromium and Maksim Sadym authored Jan 10, 2024
1 parent 3ac763d commit 809cec7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/wpt-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
head: [headless, headful]
total_chunks: [6]
this_chunk: [1, 2, 3, 4, 5, 6]
exclude:
# Don't run headful mapper, as it takes 7 minutes. It will be checked in post-commit stage.
- kind: mapper
head: headful
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down Expand Up @@ -99,7 +103,7 @@ jobs:
TOTAL_CHUNKS: ${{ matrix.total_chunks }}
UPDATE_EXPECTATIONS: false
VERBOSE: ${{ github.event.inputs.verbose }}
WPT_REPORT: out/wptreport.${{ matrix.kind }}-${{ matrix.head }}.json
WPT_REPORT: out/wptreport.${{ matrix.kind }}-${{ matrix.head }}-${{ matrix.this_chunk }}.${{ matrix.total_chunks }}.json
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
Expand Down

0 comments on commit 809cec7

Please sign in to comment.