-
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
[wasm] Perf pipeline (dotnet-runtime-perf
) completely broken for main
#78575
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
Tagging subscribers to 'arch-wasm': @lewing Issue Details
|
toolchain.cmake is not used in wasm, so i'm not sure how it can break main. |
I'll try to reproduce this locally. |
There are multiple parts that can be different between two runs.
|
Yes, that would be my guess. Likely caused by dotnet/performance#2741 |
Indeed it is. That bumped BDN from |
I won't be able to test it today (11 PM here), but I've merged a change that should solve the problem: dotnet/BenchmarkDotNet#2201 @radical this build should get green within an hour and publish Explanation: dotnet/BenchmarkDotNet#2142 has changed the way we detect Mono runtime to also support MonoVM on .NET 6+: - public static bool IsMono { get; } = Type.GetType("Mono.Runtime") != null;
+ public static bool IsMono { get; } = Type.GetType("Mono.RuntimeStructs") != null This affects the code flow in https://github.com/dotnet/BenchmarkDotNet/blob/ad8e9b26ef22aa77abff2469f7668986e1449127/src/BenchmarkDotNet/Portability/RuntimeInformation.cs#L166-L196 (IsMono was before IsWasm) and caused the call to not supported API. If it does not solve the problem, please just revert the recent BDN version update. |
Thank you for the super quick fix! I can test this out later today. |
@LoopedBard3 could you publish the new package to the internal feeds? https://ci.appveyor.com/project/dotnetfoundation/benchmarkdotnet/builds/45428788 |
Pushed! @radical |
BDN fix being picked up - dotnet/BenchmarkDotNet#2201 This is to fix dotnet/runtime#78575 .
We need to avoid introducing similar breaking changes in the future. @radical I've created dotnet/BenchmarkDotNet#2203 PTAL and add your thoughts. |
Failing build - 20221118.2:
20221118.2
was 82054d0 from Fix freebsd cross build with cmake 3.25 #78534 .8.0.100-alpha.1.22567.28
cc @am11 @akoeplinger @jkotas
Report
Summary
The text was updated successfully, but these errors were encountered: