-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
VMR: Don't set TargetRid for portable linux-musl builds #45189
Conversation
It is already the default and is easy to accidentally not keep in sync when copy/pasting.
/azp run sdk-unified-build-full |
Azure Pipelines successfully started running 1 pipeline(s). |
For my education, where is the default set? |
hmm you're right, I got confused by the arcade docs but we're actually defaulting this here: sdk/src/SourceBuild/content/Directory.Build.props Lines 56 to 80 in 959a745
and that will override the RID to be linux-x64 instead of linux-musl-x64 in some cases. I'm not sure if that's expected, I'd have thought passing TargetOS/TargetArchitecture should be enough unless you want to do a non-portable build. I'll fix the TargetRid mismatch instead. |
It is already the default and is easy to accidentally not keep in sync when copy/pasting.