-
Notifications
You must be signed in to change notification settings - Fork 45
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
Don't store built artifacts in the repository #121
Comments
I'm not sure what the best way to deal with this is. Almost all of my own use cases, and many others I know about, have agg-kicad as a git submodule in their own repository, which makes it easy to keep up-to-date, but then they only use that submodule for the In addition to being annoying because those build artifacts change, a lot of users want some of the library parts (ICs etc) without others (the agg-kicad R, C, L, and power symbols). So there was some thought to having separate build artifacts for different collections. I wonder if another repository that only contains up-to-date build artifacts is the way to go, automatically maintained by Travis? |
Yeah, I'd suspect that the best way to handle it is with one repo (say |
I think using a second repo or maybe an orphaned brach to store the build results sounds like a good idea. This would also make it a bit easier / cleaner to include the build artifacts as a submodule. |
Dealing with multiple pull requests is rather a pain at the moment because pretty much all PRs include unmergeable changes to the
agg-kicad.[lib|pro]
files.It would be much easier to deal with this stuff if these generated files weren't stored in the repo. Here's one way this could be done fairly easily:
This means that the generated libraries can be downloaded as .zip files (which is probably more convenient for most users), and those who are working off the git tree won't be constantly plagued with merge conflicts.
The text was updated successfully, but these errors were encountered: