Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It is possible to set the delay time when executing a jenkins build? Like when using p.ex:

http://host/jenkins/job/job_name/build?delay=100sec

But making it with a plugin. I dont know how to get this delay parameter and set it with another value.

Thanks a lot.

share|improve this question

1 Answer

I think build parameters are stored as environment variables and if that's the case, then you should be able set them using some code like this:

build.getEnvironment(listener).put("delay", "250");

In your plugin, you would put this in the setUp method of a class that extends the BuildWrapper.

share|improve this answer
Hello, thanks for your answer. I tried it but didnt work, don't find "delay" as a environment variable. Know another possibility to set it? It is possible to get the url that executes job and edit it in the moment of press "build now" button? Thanks!!! – user748854 May 17 '11 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.