Id like to indicate that one build project should pause while another specified project is running.
In my case, there is project No. 1, which builds and deploys the compiled code to our servers and project No. 2, which runs Selenium tests on this deployed code. Testing can take a few minutes, and Id would like to make sure that assembly and deployment does not occur in the middle of testing.
So, Id like to stop # 1 (build) while running # 2 (test).
Dependencies or triggers do not provide this option, as far as I can tell. Can this be customized?
source share