I have a situation where I want to trigger JobB when JobA is done. I have no problem doing this but I have a timing problem. The only place I see where this can be done is in the Build section. The problem with this is I have a post-build step that copies the artifacts from JobA to a server. Since I have to start JobB from the Build section, the artifacts haven't been copied yet. So I put a loop in JobB to wait until it sees the artifacts on the server. Fine. But sometimes the artifacts are there, but not complete yet. This results in JobB trying to use incomplete artifacts.
So my questions/requests:
1. Can the Parameterized Trigger Plugin and/or Parameterized Remote Trigger Plugin be made available in the post-build section? Then I could put this new trigger after the artifacts are copied. I guess this is a question for the developers of these plugins.
2. Any suggestions how to handle this?
Thank you in advance.