feat(ci): Configure Taskcluster to run Test262 tests [pt 5/5] #56845
+168
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit integrates Test262 test execution into the WPT Taskcluster Continuous Integration system.
Key changes and their purpose:
tools/ci/tc/tasks/test.yml):wpt-test262component is defined, specifying the common properties and chunking strategy for Test262 tasks within Taskcluster.test262as a recognized test suite. This ensures that Taskcluster will automatically create jobs for Test262 across configured browsers and channels (e.g., Firefox Nightly, Chrome Canary).tools/ci/tc/tests/test_valid.py):test_valid.py) are updated to expect the newwpt-*-test262-*tasks in the generated task graph. This provides automated validation that the CI configuration is correctly interpreted and will schedule the Test262 tasks as intended.With these changes, Taskcluster will automatically detect and execute Test262 tests that are present in the
third_party/test262directory (as populated by the automated vendoring workflow).This work is a fundamental part of the broader Test262 integration effort, as detailed in the RFC: web-platform-tests/rfcs#229
This commit is the final in a series of smaller PRs split from the larger, original implementation in #55997.