Reputation: 656
I'm trying to build a CI/CD from scratch with buildbot. I've decided to build a deb-package for every burst of changes on develop
branch. Here is how I see it.
changes
are updated with commit messages from release..develop
changes
are commitedrelease
is fast-forwarded to develop
develop
and release
are pushed back to repoI'm not sure if this is a good idea, because it leads to frequent change
commits on develop and I'll have to pull changes to dev box more often. This alse means that builder will have a write access to repo.
What am I missing here? Is there any better approach?
Upvotes: 2
Views: 103