-
Notifications
You must be signed in to change notification settings - Fork 272
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
Set main to run net7.0 until sdk+runtime are supported #2695
Set main to run net7.0 until sdk+runtime are supported #2695
Conversation
Honestly, I'm not sure what the correct fix would be, and there might not be one for now. AFAIU, we are not quite there with net8.0 project support, w.r.t the SDK, and runtime. What would be the impact of this change? Wouldn't we also need to change the tfm being passed to the command line? |
Also, before merging this one do make sure to run a |
Yup, got a run going atm: https://dev.azure.com/dnceng/internal/_build/results?buildId=2037521&view=results |
Changing the main branch runs back to net7.0 and 7.0 branch will cause things to build with net7.0. |
It looks like this fixed the wasm runs. Waiting for the rest of the test runs to finish and a review. |
One wasm run succeeded and one had a handful of failures. |
@radical Do you know the ETA for having net8.0 packages for wasm? |
AFAIK, we are waiting for other things to be in place, like a PR that would change the default TFM in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving in the case that the alternative solution to use net7.0 for just wasm is not suitable
@@ -3,8 +3,8 @@ | |||
class ChannelMap(): | |||
channel_map = { | |||
'main': { | |||
'tfm': 'net8.0', | |||
'branch': '8.0', | |||
'tfm': 'net7.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this used only to decide which tfm to use on dotnet/runtime
main
branch?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, that is correct
Closing to merge #2696 as a fix instead. This will allow wasm to build targeting net7 while the rest of the builds target net8.0. |
It seems this issue is related to dotnet/runtime#77899 . FYI, I merged it. |
Set main to run net7.0 until sdk+runtime are supported per: dotnet/runtime#77913 (comment).
@radical is this the fix you had in mind from the above comment?