How to restrict deliver only for successful build in RTC 3.0.1?
![]()
Amit Nath (0●6●9)
| asked Mar 04 '14, 1:43 a.m.
edited Mar 04 '14, 2:51 a.m. by Krzysztof Kaźmierczyk (7.4k●3●54●99)
How do I restrict user to deliver only when the build is success in RTC 3.0.1?
|
Accepted answer
![]()
I see couple of options here:
1. Not exactly what you are looking for, but you might prevent build if you have any workspace errors: https://jazz.net/help-dev/clm/index.jsp?re=1&topic=/com.ibm.team.scm.doc/topics/t_scm_eclipse_process_preconditions.html&scope=null 2. You might try building your own precondition checking whether the build is successful: https://jazz.net/library/article/495 3. You can have two streams: let's call them unconfirmed and confirmed. Developers are developing data to unconfirmed one and it triggers the build which decides whether we can deliver changes to confirmed one or now (according to https://jazz.net/library/article/649#Example_postBuildDeliver) Let us know if that helps. Amit Nath selected this answer as the correct answer
Comments Thanks Krzysztof, it definately helps. Combining preconditions/post build deliver & two workspace etc... this can be aciheved... |