-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use default timeout for launching the browser in WBT #108474
Conversation
Tagging subscribers to this area: @directhex, @matouskozak |
/azp run |
You have several pipelines (over 10) configured to build pull requests in this repository. Specify which pipelines you would like to run by using /azp run [pipelines] command. You can specify multiple pipelines using a comma separated list. |
/azp run runtime |
Azure Pipelines successfully started running 1 pipeline(s). |
/backport to release/9.0 |
Started backporting to release/9.0: https://github.com/dotnet/runtime/actions/runs/11326064420 |
@ilonatommy backporting to release/9.0 failed, the patch most likely resulted in conflicts: $ git am --3way --empty=keep --ignore-whitespace --keep-non-patch changes.patch
Applying: Use default timeout of 30s.
Using index info to reconstruct a base tree...
M src/mono/wasm/Wasm.Build.Tests/BrowserRunner.cs
Falling back to patching base and 3-way merge...
Auto-merging src/mono/wasm/Wasm.Build.Tests/BrowserRunner.cs
CONFLICT (content): Merge conflict in src/mono/wasm/Wasm.Build.Tests/BrowserRunner.cs
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
hint: When you have resolved this problem, run "git am --continue".
hint: If you prefer to skip this patch, run "git am --skip" instead.
hint: To restore the original branch and stop patching, run "git am --abort".
hint: Disable this message with "git config advice.mergeConflict false"
Patch failed at 0001 Use default timeout of 30s.
Error: The process '/usr/bin/git' failed with exit code 128 Please backport manually! |
@ilonatommy an error occurred while backporting to release/9.0, please check the run log for details! Error: git am failed, most likely due to a merge conflict. |
Contributes to #107771.
In the worst case launching the browser now will take 90 sec - we have 3 tries. It can prolong the execution of tests but it might also decrease the number of hits in the known issue till we find a real fix.
We always use
SpawnBrowserAsync
with default parameter value:runtime/src/mono/wasm/Wasm.Build.Tests/TestAppScenarios/InterpPgoTests.cs
Line 54 in 3ca4ec8
and
runtime/src/mono/wasm/Wasm.Build.Tests/BrowserRunner.cs
Line 157 in 3ca4ec8