0

I am looking for recommendations or best practices to implement private builds in CI/CD. When developers check in code to a "private branch" or a personal workspace in source control it should trigger CI / CD workflows in Jenkins. It should be separate from the CI/CD workflows which are executed off trunk or main branch in SCM.

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
codeboy
  • 3
  • 1

1 Answers1

1

Use Multi-branch pipeline plugin as explained here. It will build every branch separately. However, if there are any shared external resources(updating file/DB) they should be locked.

Ram
  • 1,154
  • 6
  • 22