user3899994
user3899994

Reputation: 11

Team City build configuration for Continuous integration

I have a team city build configuration , which picks up data from bit bucket and packages it to transfer to udeploy. There is no code build process , it is just simple package and transfer process. All i want is that my team city build configuration should pick files only which are newly committed and never been picked up in previous team city builds. How do i configure this build component to enable this feature.Appreciate you help !

Upvotes: 1

Views: 292

Answers (1)

Wesley Rolnick
Wesley Rolnick

Reputation: 891

Checkout the Configure and Run Your First Build documentation. The steps you will need to pay attention to are:

  1. Setting the VCS Root. This is how Team City will know when source code changes.

  2. Automatic Build Trigger. Even though you are not going to build code, you will trigger your "build" steps on changes in this repository.

  3. Configure your "build" steps to do whatever packaging logic you need. You can add a deployment configuration to deploy the packaged product at this point.

Upvotes: 1

Related Questions