Add support for specifying a file path via -f/--file when loading buildspec into cache#1808
Merged
shahzebsiddiqui merged 8 commits intodevelfrom Aug 16, 2024
Merged
Conversation
…o add into buildspec cache instead of just --directory option which will recursively add all files in a directory. The file must be valid and must exist on file system and end with .yml extension to be added into the cache
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.
We have added support for command
buildtest buildspec find -f <file>to enable buildtest to update buildspec cache with file pathmotivation
Current support was limited to directory when building buildspec cache such that user must specify all buildspec files (.yml) in a directory. If one wants to add a few files into the buildspec cache that was not possible.
Shown below is an example usage, we can see that buildtest will load files
tutorials/vars.ymlandtutorials/sleep.ymlinto the buildspec cache. Buildtest will ignore files that dont exist liketutorials/x.yml