I am a release engineer and I just switched to a new company. As my role demands setting up the build process in the new company. We use svn for versioning here.
In my previous experience it has been a practice that every build will be accompanied with a tag. While defining the new process here, I tried to validate if this tag is really needed for every build.
Here are some of the pros and cons I can think of
Pros:
- Would help if we have to compare two builds
- There is no seperate need to tag different milestone build. which will be manual process if it is not automatically created during build time.
- This make it easier to revert to a “known good build” when things go horribly wrong or when some weird impossible to find bugs are found.
Cons:
- In the long run the tags directory becomes cluttered and creates performance issues if the number of tag is high in a single folder.
- Takes unnessary space in the repository(althought it is negligible in the case of svn)
Is there any other pros or cons other than the ones mentioned above ?
