-
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
Join assets from verticals in the final join point #43627
Merged
ViktorHofer
merged 23 commits into
dotnet:main
from
MilenaHristova:mhristova/join-verticals
Oct 17, 2024
Merged
Changes from 3 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0270b04
merge vertical manifests
MilenaHristova 260f356
exclude verticals from join
MilenaHristova c5c14ac
add comment
MilenaHristova 0aa6762
list duplicate assets
MilenaHristova d1784b7
parallelism
MilenaHristova 745f552
download build artifact
MilenaHristova 6f70d33
fix path
MilenaHristova 82c18d0
add comment
MilenaHristova ed711dc
add extra parallelism
MilenaHristova c34e878
Update src/SourceBuild/content/eng/tools/tasks/Microsoft.DotNet.Unifi…
MilenaHristova 717bfcb
Merge branch 'main' into mhristova/join-verticals
MilenaHristova a08dc29
add comment
MilenaHristova 0a9cb47
Merge branch 'mhristova/join-verticals' of https://github.com/MilenaH…
MilenaHristova afd565d
Merge branch 'main' into mhristova/join-verticals
mmitche 1093ff3
Merge branch 'main' into mhristova/join-verticals
mmitche ea8dd95
Update src/SourceBuild/content/eng/join-verticals.proj
MilenaHristova 90400d7
Update src/SourceBuild/content/eng/pipelines/ci.yml
MilenaHristova 2e256ba
Update src/SourceBuild/content/eng/pipelines/pr.yml
MilenaHristova 0d501d1
Remove the unused target
ViktorHofer 5d36eba
Update src/SourceBuild/content/eng/pipelines/ci.yml
ViktorHofer d33abcc
Update src/SourceBuild/content/eng/pipelines/pr.yml
ViktorHofer 37d25d5
Merge branch 'main' into mhristova/join-verticals
ViktorHofer 875c991
Update vmr-build.yml
ViktorHofer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm not sure I understand the purpose of this. It seems to be roughly redundant with the code just above https://github.com/dotnet/sdk/pull/43627/files/82c18d04336d56e52f0df8fe7f18e40999216437..717bfcb8325cd132be588c243981e9d30031f53f#diff-0bb02635d68274012f0c2cabbf5fa8e513c3472b0d93e8bd5b1f14a379741fb5R215
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.
If it's not redundant, can you add a comment as to its purpose?
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.
I added a comment, this is for the sdk zip which exists in 2 places in the artifact - for example
Windows_x64_Artifacts/assets/Release/dotnet-sdk-*-win-x64.zip
andWindows_x64_Artifacts/assets/Release/Sdk/*/dotnet-sdk-*-win-x64.zip
but it's listed only once in the vertical manifestI assume it's getting copied somewhere after the manifest creation but couldn't find where
Comparing the full path solves the issue
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.
Gotcha, and my guess is that it's not enough to initially compare with the full path in all cases?
We need to add some tests for this merging code to ensure that the desired selection is being made: dotnet/source-build#4661
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.
I found some places where
Contains
doesn't work - bothMicrosoft.DotNet.Wpf.GitHub.9.0.0-rc.1.24413.1.nupkg
andruntime.win-x86.Microsoft.DotNet.Wpf.GitHub.9.0.0-rc.1.24413.1.nupkg
contain the same package nameSo we'd need to check both that the filename fully matches and compare the path, since we need to check the path only in few cases it made sense to do it this way