0

In TFS 2013 I have Build A which compiles and runs unit tests. I also have Build B which deploys to a dev server. How can I start build B when Build A succeeds in TFS 2013?

rene
  • 41,474
  • 78
  • 114
  • 152
devlife
  • 15,275
  • 27
  • 77
  • 131
  • 1
    You would have to modify the process template to queue build B from build A, once you see the tests are completed successfully in A – allen Dec 15 '13 at 05:41

1 Answers1

2

You create a custom Workflow, Download the build Definition and then add the "Start Build"-Activity. Choose your build-workflow in the build-definition and voilà

devlife
  • 15,275
  • 27
  • 77
  • 131
Oswald
  • 1,252
  • 20
  • 32
  • Yeah I can't wait until this is built in. FWIW I found the Community TFS Extensions that have a QueueBuild activity: https://tfsbuildextensions.codeplex.com/documentation – devlife Dec 18 '13 at 22:34