I'm using two Jenkins servers of the same version with the same plugins on two machines. Let's call one of them public Jenkins and the other private Jenkins. I want to start a build A on the private server and afterwards start a build B on the public server.
I tried to solve this with the Build Publisher Plugin. I configured the private server by entering the server URL and credentials of the public. I set that build A should be published to the public server.
This works, the build job A is visible afterwards on the public server. I configured that Build job B should be triggered when the published job A is done, but this doesn't work. Build A is visible on the public server, but although the build process was successful on private machine, there are no information about last build date and status.
Is there anything that I missed? Is it really possible to trigger a build job after a subscribed build job has finished or is there a easier way?
Any help is appreciated!