I am extending an existing Jenkins/Hudson plugin. I would like it to set a environment variable pair for the running project. What is the easiest way to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the EnvInject plugin. You can create the environment variables prior to the job starting, or do it as a build step. |
|||||
|
|
During build, for example in a
It will add the key-value pairs as build parameters, which will be visible as environment variables too, in the usual manner. Note: I have not tested that extensively, there may be some "gotcha" which presents itself in some situation... But it has worked for me so far. |
|||
|
|
You could use the EnvironmentContributor extension point, see http://javadoc.jenkins-ci.org/hudson/model/EnvironmentContributor.html |
|||
|
|