Merge pull request #371 from lightpanda-io/ci-wpt-split
Some checks failed
e2e-test / zig build release (push) Has been cancelled
wpt / web platform tests (push) Has been cancelled
wpt / web platform tests json output (push) Has been cancelled
zig-test / zig build dev (push) Has been cancelled
zig-test / zig test (push) Has been cancelled
e2e-test / puppeteer-perf (push) Has been cancelled
e2e-test / demo-scripts (push) Has been cancelled
wpt / perf-fmt (push) Has been cancelled
zig-test / perf-fmt (push) Has been cancelled
nightly build / build-linux-x86_64 (push) Has been cancelled
nightly build / build-linux-aarch64 (push) Has been cancelled
nightly build / build-macos-aarch64 (push) Has been cancelled
nightly build / build-macos-x86_64 (push) Has been cancelled

ci: split wpt wnd wpt-json jobs
This commit is contained in:
Pierre Tachoire
2025-03-28 13:39:32 +01:00
committed by GitHub

View File

@@ -62,6 +62,23 @@ jobs:
# TODO remove the continue-on-error when tests will pass. # TODO remove the continue-on-error when tests will pass.
continue-on-error: true 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 - name: json output
run: zig build wpt -Dengine=v8 -- --safe --json > wpt.json run: zig build wpt -Dengine=v8 -- --safe --json > wpt.json
@@ -80,7 +97,7 @@ jobs:
perf-fmt: perf-fmt:
name: perf-fmt name: perf-fmt
needs: wpt needs: wpt-json
# Don't execute on PR # Don't execute on PR
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'