1

Is there any way to set build dependencies on artifacts, which was generated in private builds on another project?

Iged M.
  • 13
  • 2

1 Answers1

0

If I understand correctly, you have B, which depends on A (A-->B), and A generates artifacts that B needs to consume.

Yes, this should work with private builds. You may have to set up a snapshot dependency (A-->B). A finish-build trigger is insufficient, as explained here. Thus, set up the snapshot dependency and trigger B rather than A; B will trigger A itself.

Community
  • 1
  • 1
sferencik
  • 3,144
  • 1
  • 24
  • 36
  • In this scenario, B will be personal too? Is it possible to launch personal build A, depended on B and B will be in trunk? – Iged M. Mar 24 '16 at 14:31
  • I don't think so. Both B and A will get your personal changes applied (in the form of a "patch" applied to the workspace). – sferencik Mar 24 '16 at 14:36