[wasm] Pin linux/win V8 to 15.1.103 for exnref support#130084
Open
DrewScoggins wants to merge 1 commit into
Open
[wasm] Pin linux/win V8 to 15.1.103 for exnref support#130084DrewScoggins wants to merge 1 commit into
DrewScoggins wants to merge 1 commit into
Conversation
PR dotnet#129851 switched WASM exception handling to the standardized exnref proposal, which requires V8 with --experimental-wasm-exnref (V8 15.1+). The subsequent chrome-for-testing bump (dotnet#129934) recomputed the V8 version from Chrome 149 and reverted linux_V8Version/win_V8Version from 15.1.103 back to 14.9.207, which does not understand exnref. As a result the wasm perf leg (which installs V8 via jsvu using linux_V8Version) and other V8 shell legs abort at startup: Warning: unknown flag --experimental-wasm-exnref. MONO_WASM: Assert failed: This browser/engine doesn't support WASM exception handling. Restore linux/win V8 to 15.1.103 (matching macos_V8Version), which is available on the V8 canary CDN that jsvu downloads from and supports exnref behind the flag already passed by WasmRunnerTemplate.sh and the perf harness. See dotnet#129849. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the WASM test/perf tooling configuration to pin the Linux and Windows V8 versions back to 15.1.103, aligning them with macOS, so V8-based legs can run with the --experimental-wasm-exnref flag required by the standardized WASM exception-handling (exnref) path.
Changes:
- Update
linux_V8Versionfrom14.9.207→15.1.103. - Update
win_V8Versionfrom14.9.207→15.1.103. - Keep
macos_V8Versionat15.1.103(now all OSes match).
Member
|
@DrewScoggins we added #129974 to prevent any downgrades of this kind in the future. |
ilonatommy
approved these changes
Jul 1, 2026
Member
Author
|
I see that there are three failures. One the job got deadlettered. One has this error:
And the last seems to have a bad docker image. Are these known issues for WASM? |
Member
Author
|
Re-running the failed jobs, to see if they pass. Most of the failures looked unrelated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
WASM perf runs (and other V8 shell-engine legs) abort at startup:
Root cause
[browser] WASM exception handling to use the standardized exnref) switched the runtime to the exnref exception-handling proposal, which requires a V8 that understands--experimental-wasm-exnref(V8 15.1+). That PR setlinux/macos/win_V8Versionto15.1.103.linux_V8Versionandwin_V8Versionback to14.9.207(leaving onlymacos_V8Versionat15.1.103).14.9.207predates exnref, so it rejects the flag and the runtime's startup feature check (featureWasmFinalEh) asserts. The wasm perf leg is hit becausedotnet/performancerun_performance_job.pyreadslinux_V8Versionand installs exactly that build viajsvu.Fix
Restore
linux_V8Versionandwin_V8Versionto15.1.103(matchingmacos_V8Version). Thev8-linux64-rel-15.1.103.zipandv8-win32-rel-15.1.103.zipbinaries exist on the V8 canary CDN thatjsvu/DownloadAndInstallV8use (verified 200 OK), and15.1.103supports exnref behind the--experimental-wasm-exnrefflag already emitted byeng/testing/WasmRunnerTemplate.shand the perf harness (dotnet/performance#5247).Note on the auto-updater
The chrome-for-testing auto-bump derives the V8 version from the Chrome milestone, so a future run will revert this to
14.9.xagain unless the pinned Chrome is advanced to a milestone whose V8 is 15.1+ (Chrome 151) or the updater is taught not to downgrade V8 below the exnref floor. Tracking: #129849.