Re: My release is blocked by GitHub jenkinsci settings

2017-03-05 Thread Sam Gleske
My workaround didn't work...

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/1229b759-a0c0-46ca-8044-1429fcae97f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: My release is blocked by jenkinsci settings

2017-03-05 Thread Sam Gleske
Correction, refer to 
https://groups.google.com/forum/#!topic/jenkinsci-dev/X-8H6CtprRo

On Sunday, March 5, 2017 at 8:36:50 PM UTC-8, Sam Gleske wrote:
>
> I require the assistance of an https://github.com/jenkinsci admin.
>
> At some point I think Kurt Madel had enabled "required status checks" for 
> the Slack Plugin GitHub repository.  Because of this, I'm blocked on using 
> the maven release plugin because GitHub won't accept maven release plugin 
> commits (due to the required status checks).
>
> Can somebody who has the ability to configure GitHub jenkinsci projects 
> modify the settings of https://github.com/jenkinsci/slack-plugin so that 
> a release can be performed?
>
> Reference: 
> https://github.com/jenkinsci/slack-plugin/issues/296#issuecomment-284299957
>
> I may have a dirty workaround but I'd rather not rely on it.
>

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/ef1fed2f-6b3a-4259-bf01-92744d5bb1b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: My release is blocked by jenkinsci settings

2017-03-05 Thread Sam Gleske
This is a duplicate - please refer to 
https://groups.google.com/forum/#!topic/jenkinsci-dev/7c0wp3pOVr4

On Sunday, March 5, 2017 at 8:36:50 PM UTC-8, Sam Gleske wrote:
>
> I require the assistance of an https://github.com/jenkinsci admin.
>
> At some point I think Kurt Madel had enabled "required status checks" for 
> the Slack Plugin GitHub repository.  Because of this, I'm blocked on using 
> the maven release plugin because GitHub won't accept maven release plugin 
> commits (due to the required status checks).
>
> Can somebody who has the ability to configure GitHub jenkinsci projects 
> modify the settings of https://github.com/jenkinsci/slack-plugin so that 
> a release can be performed?
>
> Reference: 
> https://github.com/jenkinsci/slack-plugin/issues/296#issuecomment-284299957
>
> I may have a dirty workaround but I'd rather not rely on it.
>

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/0203e8b5-0703-48c4-af71-1a5971743f6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


My release is blocked by GitHub jenkinsci settings

2017-03-05 Thread Sam Gleske
I require the assistance of an https://github.com/jenkinsci admin.

At some point I think Kurt Madel had enabled "required status checks" for 
the Slack Plugin GitHub repository.  Because of this, I'm blocked on using 
the maven release plugin because GitHub won't accept maven release plugin 
commits (due to the required status checks).

Can somebody who has the ability to configure GitHub jenkinsci projects 
modify the settings of https://github.com/jenkinsci/slack-plugin so that a 
release can be performed?

Reference: 
https://github.com/jenkinsci/slack-plugin/issues/296#issuecomment-284299957

I may have a dirty workaround but I'd rather not rely on it.

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/d781024d-286e-44b2-87ed-6f2724d1efef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


My release is blocked by jenkinsci settings

2017-03-05 Thread Sam Gleske
I require the assistance of an https://github.com/jenkinsci admin.

At some point I think Kurt Madel had enabled "required status checks" for
the Slack Plugin GitHub repository.  Because of this, I'm blocked on using
the maven release plugin because GitHub won't accept maven release plugin
commits (due to the required status checks).

Can somebody who has the ability to configure GitHub jenkinsci projects
modify the settings of https://github.com/jenkinsci/slack-plugin so that a
release can be performed?

Reference:
https://github.com/jenkinsci/slack-plugin/issues/296#issuecomment-284299957

I may have a dirty workaround but I'd rather not rely on it.

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAKtEXLA%3Dj6ok3kO0DFB7Xd4ddDXjdShwLP3zPNWms1kThKV7ug%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Setting envrioment variables from plugin running in pipeline script

2017-03-05 Thread andrew . sumner
I have a plugin I've been updating to support pipeline script (with some 
help from this forum - thanks guys!).  During testing I discovered that the 
plugin is not setting environment variables when run from a pipeline 
script, but works fine in a freestyle job.

Can anyone suggest anything I might have overlooked?

Thanks in advance
  Andrew


*Pipeline Script*

This outputs an empty value for %BUILDMASTER_APPLICATION_ID%.

node {
buildMasterSelectApplication applicationId: '1', deployableId: '1'
bat 'echo BUILDMASTER_APPLICATION_ID = %BUILDMASTER_APPLICATION_ID%'
}


*Code*

This is how I'm setting the environment variable

public class SelectApplicationBuilder extends Builder implements 
SimpleBuildStep {

@Override
public void perform(Run run, FilePath workspace, Launcher 
launcher, TaskListener listener) throws InterruptedException, IOException {
run.addAction(new 
VariableInjectionAction("BUILDMASTER_APPLICATION_ID", applicationId));
} 
}



-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/3a0afe81-6adf-4cd5-ae54-e8b44999a79e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.