I'm trying to develop new Jenkins plugin. I've started from hello-world 
archetype <https://github.com/jenkinsci/archetypes/tree/master/hello-world> 
provided 
by Jenkins. My plugin works fine!

Bun now i want to put some environment variables from my plugin. I've used 
whis code to do it

public void perform(Run<?, ?> run, FilePath workspace, Launcher launcher, 
TaskListener listener) {

    ...
    EnvVars envVars = run.getEnvironment(listener);
    envVars.put("SOME_VARIABLE", "SOME_VALUE");
    ...
}

But it don't work. I'm trying to use this variable on next build step and 
got nothing. I've googled it and there isn't quite clear discriptions. 
Source codes of existing plugins (EnvInject, etc) also doesn't help.

What am i doing wrong? Can anybody provide me some samples?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/a060926d-bd1a-4511-a3ae-ea54109722a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to