-
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
Installer build (corehost) for Linux/OSX failing in official build #38590
Comments
Tagging subscribers to this area: @vitek-karas, @swaroop-sridhar, @agocke |
Tagging subscribers to this area: @swaroop-sridhar, @agocke |
Understood to be caused/triggered by #36847 |
The problem here, as identified by @jkoritzinsky, is that |
It looks like <PropertyGroup Condition="
'$(RuntimeIdentifier)' != '$(OutputRid)' and
'$(AllArtifactsDownloadPath)' != ''"> which is true if Perhaps the fix should be <PropertyGroup Condition="
'$(RuntimeIdentifier)' != '' and
'$(RuntimeIdentifier)' != '$(OutputRid)' and
'$(AllArtifactsDownloadPath)' != ''"> i.e. - if |
For reference - we get And that is where the coreclr binaries are unzipped. However we also get which triggers the override, but there is nothing to override to - since |
Fixed in #38602 |
Failing on
singlefilehost
build.cc @swaroop-sridhar @VSadov
The text was updated successfully, but these errors were encountered: