Re: Trying to support pipeline, can't read env vars or build result.

2017-07-12 Thread Jesse Glick
On Tue, Jul 11, 2017 at 10:34 AM, Prabhas Gupte wrote: > read a user defined env var Not possible: https://issues.jenkins-ci.org/browse/JENKINS-29144 -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop

Re: Trying to support pipeline, can't read env vars or build result.

2017-07-12 Thread Prabhas Gupte
That is fine. I can ignore the result for now. But getting that PACKAGE_ID Env Var is my top-most priority at this moment. Any help in that direction would be appreciated. On Tuesday, July 11, 2017 at 9:57:06 PM UTC+5:30, slide wrote: > > If the result is null, then you can consider it to be s

Re: Trying to support pipeline, can't read env vars or build result.

2017-07-11 Thread Slide
If the result is null, then you can consider it to be success. On Tue, Jul 11, 2017 at 7:54 AM Prabhas Gupte wrote: > Hi, > I am completely new to Jenkins plugin development, and have no prior > experience with this. > > I have a post-build action, which I am trying to support in pipeline. > > M

Trying to support pipeline, can't read env vars or build result.

2017-07-11 Thread Prabhas Gupte
Hi, I am completely new to Jenkins plugin development, and have no prior experience with this. I have a post-build action, which I am trying to support in pipeline. My class heading reads like this: > public class GetDataNotifier extends Notifier implements SimpleBuildStep { > ... I also ha