Git sparse checkout for sourcesdir#3629
Open
victorusu wants to merge 4 commits intoreframe-hpc:developfrom
Open
Git sparse checkout for sourcesdir#3629victorusu wants to merge 4 commits intoreframe-hpc:developfrom
victorusu wants to merge 4 commits intoreframe-hpc:developfrom
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3629 +/- ##
===========================================
+ Coverage 91.25% 91.32% +0.06%
===========================================
Files 62 62
Lines 13587 13532 -55
===========================================
- Hits 12399 12358 -41
+ Misses 1188 1174 -14 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This expands the
sourcesdirsyntax to include a dictionary format. In this case, the giturlis passed via theurlkey.Additional command options can be added via the
optskey. This capability was previously available in thegit_clonefunction, but not accessible to thesourcesdirgit clone interface.The
git sparse-checkoutpath is available when one defines thefileskeys with a list of files to checkout.In this case, instead of emitting a
git clone ...command the framework will emit the following set of commandswhere,
${file list}is the list of files defined in thefileslist.An example test is this.
Please note that I haven't added any unit tests because the framework does not include any unit tests for the original
git_clonefunction.closes #3627