0

I am running a buildbot buildserver. I have a job my-job that gets triggered each time a git push is made. All builds are kept and can be rebuild when I am logged in. The URL to an old build looks like this:

http://buildbot.internal:8010/builders/my-job/builds/924

Now I need to trigger an old build from a Java HTTP client implementation I have made (e.g http-get), is that possible?

I have not been able to find any documentation for this type of usage.

u123
  • 15,603
  • 58
  • 186
  • 303

1 Answers1

0

In Buildbot-0.8.x, the best way to do this is to simulate a click of the "Rebuild" button in the web UI, which means POSTing the data that a web browser would POST for that form.

djmitche
  • 409
  • 2
  • 10
  • Yes that was my plan but how do write a post command from e.g command line/java that simulates a press on the Rebuild button? – u123 Jul 01 '14 at 13:04