Reputation: 9339
Is there a way to set the next build number in Hudson from a script?
I have the nextBuildNumber plug-in installed, and attempted to use wget with --post-data, but that page appears to require login.
I have two steps of a chained build and I want to keep the build numbers in sync.
Upvotes: 1
Views: 1615
Reputation: 11
There's a file named jobs/$JOBNAME/nextBuildNumber
. It contains the next build number to be used in plain text.
Upvotes: 1
Reputation: 111623
Use HTTP authentication to log into your Hudson server with a user who has suitable privileges for scheduling a build.
The authenticating scripted clients page on the Hudson wiki describes this.
Upvotes: 0