-
Notifications
You must be signed in to change notification settings - Fork 69
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
question on where to store goldens #149
Comments
We have a lot of goldens and never had any issues with storage / git. |
@andrewescutia That being said, for our workflow though, having the goldens in the repo has been invaluable -- they are a key part of PR review... it helps understand the scope of user facing changes and catch potential issues. |
Thats a good point. Our CI also currently does a fresh clone on build. Can I ask what kind of workarounds you had to put in place to make that more efficient? |
Our CI agents spin up with a mounted working folder already checked out |
I've been using Golden Tests and just adding the images to git. Overtime the size of the git repo is obviously increasing, eventually I plan to just rewrite the git history and remove golden tests older than 'x' months. This strategy only works well in a private company where changing the git hash of all the commits is acceptable. I wouldn't do that in a public repo. |
Hi, would like to know if there have been any git performance implications on storing golden images within the repository? Is there a way to store goldens within git LFS? or a CDN for comparison? Is that even necessary? Slightly concerned in potentially storing a large amount of goldens (along with revisions) in git. Not sure though if this should truly be a concern.
Thanks.
The text was updated successfully, but these errors were encountered: