Skip to content

Commit

Permalink
ci: split wpt wnd wpt-json jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
krichprollsch committed Jan 22, 2025
1 parent 7fe719f commit 1ebd4fc
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,23 @@ jobs:
# TODO remove the continue-on-error when tests will pass.
continue-on-error: true

wpt-json:
name: web platform tests json output

# Don't execute on PR
if: github.event_name != 'pull_request'

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# fetch submodules recusively, to get zig-js-runtime submodules also.
submodules: recursive

- uses: ./.github/actions/install

- name: json output
run: zig build wpt -Dengine=v8 -- --safe --json > wpt.json

Expand All @@ -80,7 +97,7 @@ jobs:

perf-fmt:
name: perf-fmt
needs: wpt
needs: wpt-json

# Don't execute on PR
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit 1ebd4fc

Please sign in to comment.