Hello,
I'd like to store artifacts (~2GB per build) from my CI server (currently evaluating Hudson) in a space-efficient manner and have an easy way to access them. Artifacts are mostly a huge set of dlls and other binaries which in majority don't change between builds.
I thought of just using a standard VCS with dedicated repository for that: subversion or maybe mercurial+bfiles (I don't know it very well) for that. Then changing between versions would be simply svn up -rXX
... but I'd like to be able to remove old artifacts to save space.
Am I going crazy trying to use VCSes to do that? Are there tools that are better suited to this usage?
Edit: Important features that VCSes already have: Windows UI (mostly for testers), labeling builds (so that it is easy to find out which build corresponds to which commit), remote access, and that you can switch between builds without redownloading all set of artifacts.