[JIRA] [git-plugin] (JENKINS-30076) Build only latest of matched tags or branches

2015-08-21 Thread nick.abalov+j...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Abalov commented on  JENKINS-30076 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Build only latest of matched tags or branches  
 
 
 
 
 
 
 
 
 
 
Yes, I have considered it. But the thing is we have unstable timeframes between releases. Sometimes one of the projects might go unreleased for a month, yet next month it will be released every week. I would like to be able to reliable setup git cloning in such way, so that it explicitly states that latest (release) tag should be built and there wont be any problem with plugin trying to rebuild all tags if we had to change remote url or something. Ancestry build chooser wont give me a reliable way. 
I think, it would be useful if there was Last strategy in Strategy for choosing what to build alongside with Ancestry and Inverse. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-30076) Build only latest of matched tags or branches

2015-08-21 Thread nick.abalov+j...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Abalov edited a comment on  JENKINS-30076 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Build only latest of matched tags or branches  
 
 
 
 
 
 
 
 
 
 Ithinkthereshouldbenodifferencebetweenmostrecentlyappliedtagorcommitdateinmostcases,asreleasetagsareusuallyappliedinlinearfashion.{code}A---B---C---D---Ev1v2{code}IfonewantstoreleaseaversionofcodethatrollbackstocommitCthatwasmadebeforepreviousreleasetag(v2),thenoneshouldmakenewcommit,sayF,thatrevertsfunctionality,insteadofaddingnewversionv3tagbeforev2tag.{code}A---B---C---D---E---F(reverttoC)v1v2v3{code}So,forLastitcanworkbygettingcommitortagdate,whichoneiseasiertoimplement.IfyouthinkthatLastbehaviourisambiguous,SemanticLatestcanbeintroducedfortagsonly.SemanticLatestcancomparetagnamesfollowingsemanticversioningrules.Somethingalongthelines:#Strippinganyprefixoftagname(v1.1.1-1.1.1,prod/1.1.1-1.1.1)#Strippinganypostfixoftagname(1.1.1-beta-1.1.1)#Splittingrestofthenamebydot(1.1.1-[1,1,1])#Comparinglistssemanticversioningrule#Ifresultsofcomparingversionlistsisambiguous,thenprefixandpostfixshouldbecomparedasstrings 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-30076) Build only latest of matched tags or branches

2015-08-21 Thread nick.abalov+j...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Abalov commented on  JENKINS-30076 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Build only latest of matched tags or branches  
 
 
 
 
 
 
 
 
 
 
I think there should be no difference between most recently applied tag or commit date in most cases, as release tags are usually applied in linear fashion. 
A--

B
-

C
-

D
--E v1 v2 
If one wants to release a version of code that rollbacks to commit C that was made before previous release tag (v2), then one should make new commit, say F, that reverts functionality, instead of adding new version v3 tag before v2 tag. 
A--

B
-

C
-

D
-

E
--F (revert to C) v1 v2 v3 
So, for Last it can work by getting commit or tag date, which one is easier to implement. 
If you think that Last behaviour is ambiguous, Semantic Latest can be introduced for tags only. Semantic Latest can compare tag names following semantic versioning rules. Something along the lines: 
 

Stripping any prefix of tag name (v1.1.1 - 1.1.1, prod/1.1.1 - 1.1.1)
 

Stripping any postfix of tag name (1.1.1-beta - 1.1.1)
 

Splitting rest of the name by dot (1.1.1 - [1,1,1])
 

Comparing lists semantic versioning rule
 

If results of comparing version lists is ambiguous, then prefix and postfix should be compared as strings
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 

[JIRA] [git-plugin] (JENKINS-30076) Build only latest of matched tags or branches

2015-08-21 Thread nick.abalov+j...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nick Abalov edited a comment on  JENKINS-30076 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Build only latest of matched tags or branches  
 
 
 
 
 
 
 
 
 
 Ithinkthereshouldbenodifferencebetweenmostrecentlyappliedtagorcommitdateinmostcases,asreleasetagsareusuallyappliedinlinearfashion. {code} A---B---C---D---Ev1v2 {code}   IfonewantstoreleaseaversionofcodethatrollbackstocommitCthatwasmadebeforepreviousreleasetag(v2),thenoneshouldmakenewcommit,sayF,thatrevertsfunctionality,insteadofaddingnewversionv3tagbeforev2tag. {code} A---B---C---D---E---F(reverttoC)v1v2v3 {code}   So,forLastitcanworkbygettingcommitortagdate,whichoneiseasiertoimplement.IfyouthinkthatLastbehaviourisambiguous,SemanticLatestcanbeintroducedfortagsonly.SemanticLatestcancomparetagnamesfollowingsemanticversioningrules.Somethingalongthelines:#Strippinganyprefixoftagname(v1.1.1-1.1.1,prod/1.1.1-1.1.1)#Strippinganypostfixoftagname(1.1.1-beta-1.1.1)#Splittingrestofthenamebydot(1.1.1-[1,1,1])#Comparinglistssemanticversioningrule#Ifresultsofcomparingversionlistsisambiguous,thenprefixandpostfixshouldbecomparedasstrings 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [swarm-plugin] (JENKINS-26620) SWARM - swarm client should read password from file

2015-08-21 Thread brand...@cs.stanford.edu (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Brandon Heller commented on  JENKINS-26620 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: SWARM - swarm client should read password from file  
 
 
 
 
 
 
 
 
 
 
Also came across this issue, where we saw the password printed in the env var printout for each job. I had changed from the -password option to -passwordEnvVariable because when upgrading from v1.16 to v2.0, the -password option interprets a leading '@' in the password as a file reference. 
So the bad news is that with v2.0, you can't directly pass in some passwords, but if the -password value starts with @, it's treated as a file. I couldn't find any documentation on this, but perhaps I missed it. 
This issue should be resolved as Fixed. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-30076) Build only latest of matched tags or branches

2015-08-21 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mark Waite commented on  JENKINS-30076 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Build only latest of matched tags or branches  
 
 
 
 
 
 
 
 
 
 
I'm not sure I understand how the plugin would interpret the meaning of Last as a strategy. Are you thinking that the list of all matching tags would be generated, then the commit date of the matching SHA1's would be used to sort for the most recently applied SHA1? 
Or, would Last somehow be intended to mean the most recently applied tag, rather than the most recently applied commit? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [vncrecorder-plugin] (JENKINS-30003) VncRecorder is missing Log4j method, build with wrong version of log4j.

2015-08-21 Thread dim.tb...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Dimitri Tenenbaum commented on  JENKINS-30003 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: VncRecorder is missing Log4j method, build with wrong version of log4j.  
 
 
 
 
 
 
 
 
 
 
Sorry, I took a wrong Jenkins version for my final test. It should work now - in 1.25.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [job-dsl-plugin] (JENKINS-29972) Unable to use custom SCM plugin Extension Point

2015-08-21 Thread touseefspe...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 touseef darzi commented on  JENKINS-29972 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Unable to use custom SCM plugin Extension Point  
 
 
 
 
 
 
 
 
 
 
***seed job log** 
Started by user anonymous Building on master in workspace D:\Tools\Jenkins\jobs\integrity dsl\workspace Processing provided DSL script Existing items: GeneratedJob {name='dslintegritygenerated'} 
Finished: SUCCESS 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto edited a comment on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 [~mbtc]I'vetriedtoreproducethebuginthisenvironment:Jenkinsver.1.532.3,GradlePlugin1.24andEnvInjectPlugin1.92(latestrelease).Withthis{{build.gradle}}andGradle2. 5 6 :{code}taskshowGlobalEnv{println'Testmatch:'+(System.env.TEST_ENV=='T123')System.env.TEST_ENV.each{printlnit}}{code}Igetthisresult:{code}recena@andromeda:~/projects/gradle-helloworld$gradle-bbuild.gradleshowGlobalEnv:showGlobalEnvTestmatch:falseBUILDSUCCESSFULTotaltime:4.227secs{code}Probably,I'mdoingsomethingwrong.Anyidea?h4.MytestAnyway,I'veconfigurethefollowingFreeStyleJob:#Gitrepo:https://github.com/recena/gradle-helloworld#Checkstheoption*Injectenvironmentvariablestothebuildprocess*##In*PropertiesContent*fieldI'vedefined:{{VAR=VAR2}}#Checkstheoption*Injectpasswordstothebuildasenvironmentvariables*##Checkstheoption*Globalpasswords*becauseI'vedefinedalsoaglobalpassword:{{PASSWORDGLOBAL=PASSWORDGLOBAL}}##Note:IhavetoinvestigateifMaskpasswordparametersoptionisworkinghowitexpect.Done(y)#AddsaGradleBuildstep:##Usestheoption*InvokeGradle*andselectsGradle2.5##In*Tasks*fieldI'vedefinethenameofourtask:{{showGlobalEnv}}#AddsaSHELLstepwith:{code}echo$VARecho$PASSWORDLOCALecho$PASSWORDGLOBAL{code}h5.Consoleoutput{code}[EnvInject]-Injectglobalpasswords.Startedbyuseranonymous[EnvInject]-Loadingnodeenvironmentvariables.Buildinginworkspace/home/recena/projects/envinject-plugin/work/jobs/JENKINS-27382/workspacegitrev-parse--is-inside-work-tree#timeout=10FetchingchangesfromtheremoteGitrepositorygitconfigremote.origin.urlhttps://github.com/recena/gradle-helloworld.git#timeout=10Fetchingupstreamchangesfromhttps://github.com/recena/gradle-helloworld.gitgit--version#timeout=10git-ccore.askpass=truefetch--tags--progresshttps://github.com/recena/gradle-helloworld.git+refs/heads/*:refs/remotes/origin/*gitrev-parserefs/remotes/origin/master^{commit}#timeout=10gitrev-parserefs/remotes/origin/origin/master^{commit}#timeout=10CheckingoutRevisionb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5(refs/remotes/origin/master)gitconfigcore.sparsecheckout#timeout=10gitcheckout-fb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5gitrev-listb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5#timeout=10[EnvInject]-ExecutingscriptsandinjectingenvironmentvariablesaftertheSCMstep.[EnvInject]-InjectingasenvironmentvariablesthepropertiescontentVAR=VAR1[EnvInject]-Variablesinjectedsuccessfully.[Gradle]-Launchingbuild.[workspace]$/home/recena/projects/envinject-plugin/work/tools/hudson.plugins.gradle.GradleInstallation/Gradle_2.6/bin/gradleshowGlobalEnv:showGlobalEnvVARwasinjectedusingthefieldPropertiesContent:VAR1VAR1PASSWORDLOCALwasinjectedusingtheoptionInjectpasswords:PASSWORDGLOBALwasinjectedusingtheoptionInjectpasswords:BUILDSUCCESSFULTotaltime:2.554secsThisbuildcouldbefaster,pleaseconsiderusingtheGradleDaemon:https://docs.gradle.org/2.6/userguide/gradle_daemon.htmlBuildstep'InvokeGradlescript'changedbuildresulttoSUCCESS[workspace]$/bin/sh-xe/tmp/hudson5969723979230846787.sh+echoVAR1VAR1+echo+echoFinished:SUCCESS{code}h5.EnvironmentVariables(URL:JOB_NAME/BUILD_ID/injectedEnvVars/)*{{VAR=VAR1}}(/)*{{PASSWORDLOCAL=}}(/)*{{PASSWORDGLOBAL=}}(/)h5.EnvironmentVariables(FILESYSTEM:jobs/JOB_NAME/lastSuccessful/injectedEnvVars.txt){code}VAR=VAR1PASSWORDGLOBAL=PASSWORDLOCAL={code}/cc[~schristou] 
 
 
 
 
 
 
 
 
 
 
 
 
  

[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto edited a comment on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 [~mbtc]I'vetriedtoreproducethebuginthisenvironment:Jenkinsver.1.532.3,GradlePlugin1.24andEnvInjectPlugin1.92(latestrelease).Withthis{{build.gradle}}andGradle2.5:{code}taskshowGlobalEnv{println'Testmatch:'+(System.env.TEST_ENV=='T123')System.env.TEST_ENV.each{printlnit}}{code}Igetthisresult:{code}recena@andromeda:~/projects/gradle-helloworld$gradle-bbuild.gradleshowGlobalEnv:showGlobalEnvTestmatch:falseBUILDSUCCESSFULTotaltime:4.227secs{code}Probably,I'mdoingsomethingwrong.Anyidea?h4.MytestAnyway,I'veconfigurethefollowingFreeStyleJob:#Gitrepo:https://github.com/recena/gradle-helloworld#Checkstheoption*Injectenvironmentvariablestothebuildprocess*##In*PropertiesContent*fieldI'vedefined:{{VAR=VAR2}}#Checkstheoption*Injectpasswordstothebuildasenvironmentvariables*##Checkstheoption*Globalpasswords*becauseI'vedefinedalsoaglobalpassword:{{PASSWORDGLOBAL=PASSWORDGLOBAL}}##Note:IhavetoinvestigateifMaskpasswordparametersoptionisworkinghowitexpect .Done(y) #AddsaGradleBuildstep:##Usestheoption*InvokeGradle*andselectsGradle2.5##In*Tasks*fieldI'vedefinethenameofourtask:{{showGlobalEnv}}#AddsaSHELLstepwith:{code}echo$VARecho$PASSWORDLOCALecho$PASSWORDGLOBAL{code}h5.Consoleoutput{code}[EnvInject]-Injectglobalpasswords.Startedbyuseranonymous[EnvInject]-Loadingnodeenvironmentvariables.Buildinginworkspace/home/recena/projects/envinject-plugin/work/jobs/JENKINS-27382/workspacegitrev-parse--is-inside-work-tree#timeout=10FetchingchangesfromtheremoteGitrepositorygitconfigremote.origin.urlhttps://github.com/recena/gradle-helloworld.git#timeout=10Fetchingupstreamchangesfromhttps://github.com/recena/gradle-helloworld.gitgit--version#timeout=10git-ccore.askpass=truefetch--tags--progresshttps://github.com/recena/gradle-helloworld.git+refs/heads/*:refs/remotes/origin/*gitrev-parserefs/remotes/origin/master^{commit}#timeout=10gitrev-parserefs/remotes/origin/origin/master^{commit}#timeout=10CheckingoutRevisionb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5(refs/remotes/origin/master)gitconfigcore.sparsecheckout#timeout=10gitcheckout-fb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5gitrev-listb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5#timeout=10[EnvInject]-ExecutingscriptsandinjectingenvironmentvariablesaftertheSCMstep.[EnvInject]-InjectingasenvironmentvariablesthepropertiescontentVAR=VAR1[EnvInject]-Variablesinjectedsuccessfully.[Gradle]-Launchingbuild.[workspace]$/home/recena/projects/envinject-plugin/work/tools/hudson.plugins.gradle.GradleInstallation/Gradle_2.6/bin/gradleshowGlobalEnv:showGlobalEnvVARwasinjectedusingthefieldPropertiesContent:VAR1VAR1PASSWORDLOCALwasinjectedusingtheoptionInjectpasswords:PASSWORDGLOBALwasinjectedusingtheoptionInjectpasswords:BUILDSUCCESSFULTotaltime:2.554secsThisbuildcouldbefaster,pleaseconsiderusingtheGradleDaemon:https://docs.gradle.org/2.6/userguide/gradle_daemon.htmlBuildstep'InvokeGradlescript'changedbuildresulttoSUCCESS[workspace]$/bin/sh-xe/tmp/hudson5969723979230846787.sh+echoVAR1VAR1+echo+echoFinished:SUCCESS{code}h5.EnvironmentVariables(URL:JOB_NAME/BUILD_ID/injectedEnvVars/)*{{VAR=VAR1}}(/)*{{PASSWORDLOCAL=}}(/)*{{PASSWORDGLOBAL=}}(/)h5.EnvironmentVariables(FILESYSTEM:jobs/JOB_NAME/lastSuccessful/injectedEnvVars.txt){code}VAR=VAR1PASSWORDGLOBAL=PASSWORDLOCAL={code}/cc[~schristou] 
 
 
 
 
 
 
 
 
 
 
 
 

[JIRA] [job-dsl-plugin] (JENKINS-29972) Unable to use custom SCM plugin Extension Point

2015-08-21 Thread m...@daniel-spilker.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Spilker commented on  JENKINS-29972 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Unable to use custom SCM plugin Extension Point  
 
 
 
 
 
 
 
 
 
 
So, your extension must have been loaded, otherwise you should get a DslScriptException like this: 

 

javaposse.jobdsl.dsl.DslScriptException: (script, line 3) No signature of method: javaposse.jobdsl.dsl.helpers.ScmContext.CustomMethodDsl() is applicable for argument types: (java.lang.String, java.lang.Integer, java.lang.String, java.lang.String, java.lang.String, java.lang.String) values: [hostName, 123, testpath,  userName,  password, testdata]
 

 
Can you also post the generated config.xml? Try to add some debug logging to CustomMethodDsl to see if it gets called. Have you pushed your plugin to a public repo so that I can have a look? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-30080) Possible deadlock between scheduleBuild() and NodeProvisioner updates

2015-08-21 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30080 
 
 
 
  Possible deadlock between scheduleBuild() and NodeProvisioner updates  
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniel Beck 
 
 
 

Labels:
 
 deadlocklts-candidate queue 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-30080) Possible deadlock between scheduleBuild() and NodeProvisioner updates

2015-08-21 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30080 
 
 
 
  Possible deadlock between scheduleBuild() and NodeProvisioner updates  
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniel Beck 
 
 
 

Labels:
 
 deadlocklts-candidate queue 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30069) Plugin IDs versionnumber and envinject incompatible

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev commented on  JENKINS-30069 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Plugin IDs versionnumber and envinject incompatible  
 
 
 
 
 
 
 
 
 
 
Did you try to use EnvInject job property? It should be working in 1.92 for such case 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30069) versionnumber plugin should resolve vars from envinject plugin

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30069 
 
 
 
  versionnumber plugin should resolve vars from envinject plugin  
 
 
 
 
 
 
 
 
 

Change By:
 
 Oleg Nenashev 
 
 
 

Summary:
 
 PluginIDs versionnumber pluginshouldresolvevarsfrom  and envinject incompatible plugin 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30069) Plugin IDs versionnumber and envinject incompatible

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev edited a comment on  JENKINS-30069 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Plugin IDs versionnumber and envinject incompatible  
 
 
 
 
 
 
 
 
 
 DidyoutrytouseEnvInjectjobproperty? It Suchcase shouldbeworkingin1.92 forsuchcase  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto edited a comment on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 Readingthe[changelog|https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin#EnvInjectPlugin-1.91%28Mar8th,2015%29]I'veunderstoodhow*Maskpasswordparameters*shouldwork. Obviously,thereisbugbecausethepasswords(localandglobal)shouldbemarkedonlyin:*EnvironmentVariables(URL:JOB_{{NAME/BUILD_ID/injectedEnvVars/}})*EnvironmentVariables(FILESYSTEM:{{jobs/JOB_NAME/lastSuccessful/injectedEnvVars.txt}}) 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [job-dsl-plugin] (JENKINS-29972) Unable to use custom SCM plugin Extension Point

2015-08-21 Thread touseefspe...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 touseef darzi commented on  JENKINS-29972 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Unable to use custom SCM plugin Extension Point  
 
 
 
 
 
 
 
 
 
 
*jenkin log_** Jenkins Log 
Aug 21, 2015 4:01:14 PM INFO org.eclipse.jetty.util.log.JavaUtilLog info Started SelectChannelConnector@0.0.0.0:8080 Aug 21, 2015 4:01:14 PM INFO winstone.Logger logInternal Winstone Servlet Engine v2.0 running: controlPort=disabled Aug 21, 2015 4:01:15 PM INFO jenkins.InitReactorRunner$1 onAttained Started initialization Aug 21, 2015 4:01:32 PM INFO jenkins.InitReactorRunner$1 onAttained Listed all plugins Aug 21, 2015 4:01:32 PM INFO hudson.plugins.ansicolor.PluginImpl start AnsiColor: eliminating boring output (https://github.com/dblock/jenkins-ansicolor-plugin) Aug 21, 2015 4:01:34 PM INFO com.sonyericsson.hudson.plugins.gerrit.trigger.PluginImpl start Starting Gerrit-Trigger Plugin Aug 21, 2015 4:01:34 PM INFO com.sonymobile.tools.gerrit.gerritevents.GerritSendCommandQueue startQueue SendQueue started! Current pool size: 1 Aug 21, 2015 4:01:34 PM INFO jenkins.InitReactorRunner$1 onAttained Prepared all plugins Aug 21, 2015 4:01:39 PM INFO com.sonyericsson.hudson.plugins.gerrit.trigger.replication.ReplicationCache initialize initialized replication cache with expiration in MINUTES: 360 Aug 21, 2015 4:01:39 PM WARNING com.sonyericsson.hudson.plugins.gerrit.trigger.replication.ReplicationQueueTaskDispatcher  No GerritHandler was specified, won't register as event listener, so no function. Aug 21, 2015 4:01:39 PM INFO jenkins.InitReactorRunner$1 onAttained Started all plugins Aug 21, 2015 4:01:39 PM INFO jenkins.InitReactorRunner$1 onAttained Augmented all extensions Aug 21, 2015 4:01:39 PM INFO jenkins.InitReactorRunner$1 onAttained Loaded all jobs Aug 21, 2015 4:01:40 PM INFO org.jenkinsci.main.modules.sshd.SSHD start Started SSHD at port 53373 Aug 21, 2015 4:01:40 PM INFO jenkins.InitReactorRunner$1 onAttained Completed initialization Aug 21, 2015 4:01:40 PM INFO org.springframework.web.context.support.StaticWebApplicationContext prepareRefresh Refreshing org.springframework.web.context.support.StaticWebApplicationContext@231e00: display name [Root WebApplicationContext]; startup date [Fri Aug 21 16:01:40 IST 2015]; root of context hierarchy Aug 21, 2015 4:01:40 PM INFO org.springframework.web.context.support.StaticWebApplicationContext obtainFreshBeanFactory Bean factory for application context [org.springframework.web.context.support.StaticWebApplicationContext@231e00]: org.springframework.beans.factory.support.DefaultListableBeanFactory@314e6d Aug 21, 2015 4:01:40 PM INFO org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@314e6d: defining beans [authenticationManager]; root of factory hierarchy Aug 21, 2015 4:01:40 PM INFO org.springframework.web.context.support.StaticWebApplicationContext prepareRefresh Refreshing org.springframework.web.context.support.StaticWebApplicationContext@1e81a0c: display name [Root WebApplicationContext]; startup date [Fri Aug 21 16:01:40 IST 2015]; root of context hierarchy Aug 21, 2015 4:01:40 PM INFO org.springframework.web.context.support.StaticWebApplicationContext obtainFreshBeanFactory Bean factory for application context [org.springframework.web.context.support.StaticWebApplicationContext@1e81a0c]: org.springframework.beans.factory.support.DefaultListableBeanFactory@14094b3 Aug 21, 2015 4:01:40 PM INFO org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@14094b3: defining beans [filter,legacy]; root of factory hierarchy Aug 21, 2015 

[JIRA] [ldap-plugin] (JENKINS-29772) Can't retrieve ldap info using domain search with spaces

2015-08-21 Thread ricardoga...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ricardo Garca Fernndez commented on  JENKINS-29772 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Can't retrieve ldap info using domain search with spaces  
 
 
 
 
 
 
 
 
 
 
Hi Daniel Beck ! which is this workaround ? Thanks in advance. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto edited a comment on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 [~mbtc]I'vetriedtoreproducethebuginthisenvironment:Jenkinsver.1.532.3,GradlePlugin1.24andEnvInjectPlugin1.92(latestrelease).Withthis{{build.gradle}}andGradle2. 6 5 :{code}taskshowGlobalEnv{println'Testmatch:'+(System.env.TEST_ENV=='T123')System.env.TEST_ENV.each{printlnit}}{code}Igetthisresult:{code}recena@andromeda:~/projects/gradle-helloworld$gradle-bbuild.gradleshowGlobalEnv:showGlobalEnvTestmatch:falseBUILDSUCCESSFULTotaltime:4.227secs{code}Probably,I'mdoingsomethingwrong.Anyidea?h4.MytestAnyway,I'veconfigurethefollowingFreeStyleJob:#Gitrepo:https://github.com/recena/gradle-helloworld#Checkstheoption*Injectenvironmentvariablestothebuildprocess*##In*PropertiesContent*fieldI'vedefined:{{VAR=VAR2}}#Checkstheoption*Injectpasswordstothebuildasenvironmentvariables*##Checkstheoption*Globalpasswords*becauseI'vedefinedalsoaglobalpassword:{{PASSWORDGLOBAL=PASSWORDGLOBAL}}##Note:IhavetoinvestigateifMaskpasswordparametersoptionisworkinghowitexpect.Done(y)#AddsaGradleBuildstep:##Usestheoption*InvokeGradle*andselectsGradle2.5##In*Tasks*fieldI'vedefinethenameofourtask:{{showGlobalEnv}}#AddsaSHELLstepwith:{code}echo$VARecho$PASSWORDLOCALecho$PASSWORDGLOBAL{code}h5.Consoleoutput{code}[EnvInject]-Injectglobalpasswords.Startedbyuseranonymous[EnvInject]-Loadingnodeenvironmentvariables.Buildinginworkspace/home/recena/projects/envinject-plugin/work/jobs/JENKINS-27382/workspacegitrev-parse--is-inside-work-tree#timeout=10FetchingchangesfromtheremoteGitrepositorygitconfigremote.origin.urlhttps://github.com/recena/gradle-helloworld.git#timeout=10Fetchingupstreamchangesfromhttps://github.com/recena/gradle-helloworld.gitgit--version#timeout=10git-ccore.askpass=truefetch--tags--progresshttps://github.com/recena/gradle-helloworld.git+refs/heads/*:refs/remotes/origin/*gitrev-parserefs/remotes/origin/master^{commit}#timeout=10gitrev-parserefs/remotes/origin/origin/master^{commit}#timeout=10CheckingoutRevisionb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5(refs/remotes/origin/master)gitconfigcore.sparsecheckout#timeout=10gitcheckout-fb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5gitrev-listb6329ad258d2900df073bdd6bd3ef46dd9b7fcc5#timeout=10[EnvInject]-ExecutingscriptsandinjectingenvironmentvariablesaftertheSCMstep.[EnvInject]-InjectingasenvironmentvariablesthepropertiescontentVAR=VAR1[EnvInject]-Variablesinjectedsuccessfully.[Gradle]-Launchingbuild.[workspace]$/home/recena/projects/envinject-plugin/work/tools/hudson.plugins.gradle.GradleInstallation/Gradle_2.6/bin/gradleshowGlobalEnv:showGlobalEnvVARwasinjectedusingthefieldPropertiesContent:VAR1VAR1PASSWORDLOCALwasinjectedusingtheoptionInjectpasswords:PASSWORDGLOBALwasinjectedusingtheoptionInjectpasswords:BUILDSUCCESSFULTotaltime:2.554secsThisbuildcouldbefaster,pleaseconsiderusingtheGradleDaemon:https://docs.gradle.org/2.6/userguide/gradle_daemon.htmlBuildstep'InvokeGradlescript'changedbuildresulttoSUCCESS[workspace]$/bin/sh-xe/tmp/hudson5969723979230846787.sh+echoVAR1VAR1+echo+echoFinished:SUCCESS{code}h5.EnvironmentVariables(URL:JOB_NAME/BUILD_ID/injectedEnvVars/)*{{VAR=VAR1}}(/)*{{PASSWORDLOCAL=}}(/)*{{PASSWORDGLOBAL=}}(/)h5.EnvironmentVariables(FILESYSTEM:jobs/JOB_NAME/lastSuccessful/injectedEnvVars.txt){code}VAR=VAR1PASSWORDGLOBAL=PASSWORDLOCAL={code}/cc[~schristou] 
 
 
 
 
 
 
 
 
 
 
 
 
  

[JIRA] [ldap-plugin] (JENKINS-29772) Can't retrieve ldap info using domain search with spaces

2015-08-21 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-29772 
 
 
 
  Can't retrieve ldap info using domain search with spaces  
 
 
 
 
 
 
 
 
 
 
Misread the issue description, it looked like the workaround was using quotes but that doesn't work either. 
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniel Beck 
 
 
 

Priority:
 
 Minor Major 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [batch-task-plugin] (JENKINS-30082) hudson.plugins.batch_task.BatchTask cannot be cast to hudson.model.AbstractProject

2015-08-21 Thread n...@krismer.de (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nikolaus Krismer created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30082 
 
 
 
  hudson.plugins.batch_task.BatchTask cannot be cast to hudson.model.AbstractProject  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Kohsuke Kawaguchi 
 
 
 

Components:
 

 batch-task-plugin 
 
 
 

Created:
 

 21/Aug/15 11:36 AM 
 
 
 

Environment:
 

 Jenkins 1.625 
 
 
 

Priority:
 
  Blocker 
 
 
 

Reporter:
 
 Nikolaus Krismer 
 
 
 
 
 
 
 
 
 
 
The error message shown in jenkins log is: 

 

Aug 21, 2015 1:23:23 PM SCHWERWIEGEND hudson.triggers.SafeTimerTask run

Timer task hudson.model.Queue$MaintainTask@47ec5080 failed
java.lang.ClassCastException: hudson.plugins.batch_task.BatchTask cannot be cast to hudson.model.AbstractProject
	at hudson.plugins.buildblocker.BuildBlockerQueueTaskDispatcher.getBuildBlockerProperty(BuildBlockerQueueTaskDispatcher.java:199)
	at hudson.plugins.buildblocker.BuildBlockerQueueTaskDispatcher.canTake(BuildBlockerQueueTaskDispatcher.java:108)
	at hudson.model.Queue$JobOffer.canTake(Queue.java:300)
	at hudson.model.Queue.maintain(Queue.java:1476)
	at hudson.model.Queue$MaintainTask.doRun(Queue.java:2576)
	at hudson.triggers.SafeTimerTask.run(SafeTimerTask.java:51)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
	at 

[JIRA] [git-plugin] (JENKINS-27352) Git SCM polling is not triggered from a push notification with a parametrized branchspec

2015-08-21 Thread m...@morr.pl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Horecki commented on  JENKINS-27352 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Git SCM polling is not triggered from a push notification with a parametrized branchspec  
 
 
 
 
 
 
 
 
 
 
Yes, it is correct for triggered by hand. Commit notification comes from Stash Webhook to Jenkins and only parameter there is URL of git repository, e.g. 'http://jenkins:8080/jenkins/git/notifyCommit?url="" href="https://stash-server/scm/project/repo.git" class="external-link" rel="nofollow" style="color: #3b73af; text-decoration: none">https://stash-server/scm/project/repo.git'. There is no any option to include any additional parameters from this hook. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-30084) FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.

2015-08-21 Thread te...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Nord commented on  JENKINS-30084 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.  
 
 
 
 
 
 
 
 
 
 
https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/model/Queue.java#L1439-L1446 
https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/model/Queue.java#L1539-L1549 
The queue appears to just shunt flywieght tasks to blocked which then the NodeProvisioner will not care about creating new nodes for unless a slave with the right label is online. 

 
Aug 20, 2015 6:08:00 AM hudson.model.Queue scheduleInternal	FINE: hudson.matrix.MatrixProject@a3c7785[myMatrixProject] added to queue	
Aug 20, 2015 6:08:00 AM hudson.model.Queue maintain	FINE: Queue maintenance started hudson.model.Queue@111ab215	
Aug 20, 2015 6:08:00 AM hudson.model.Queue$BlockedItem enter	FINE: hudson.model.Queue$BlockedItem:hudson.matrix.MatrixProject@a3c7785[myMatrixProject]:71 is blocked	
Aug 20, 2015 6:08:00 AM hudson.model.Queue maintain	FINE: Queue maintenance started hudson.model.Queue@111ab215	
Aug 20, 2015 6:08:00 AM com.cloudbees.jenkins.QuickProvision$1 run	FINE: standard.nodeProvisioner.suggestReviewNow() - queue.length()=0	
Aug 20, 2015 6:08:03 AM hudson.model.Queue maintain	FINE: Queue maintenance started hudson.model.Queue@111ab215	
Aug 20, 2015 6:08:04 AM jenkins.metrics.api.Metrics$HealthChecker$3 run	FINE: Started jenkins.metrics.api.Metrics$HealthChecker	
Aug 20, 2015 6:08:04 AM jenkins.metrics.api.Metrics$HealthChecker$3 run	FINE: Finished jenkins.metrics.api.Metrics$HealthChecker. 2 ms	
Aug 20, 2015 6:08:08 AM hudson.model.Queue maintain	FINE: Queue maintenance started hudson.model.Queue@111ab215	
Aug 20, 2015 6:08:10 AM hudson.slaves.NodeProvisioner$2 run	FINE: Queue length 0 is less than the available capacity 0. No provisioning strategy required	
Aug 20, 2015 6:08:10 AM hudson.slaves.NodeProvisioner$2 run	FINE: Queue length 0 is less than the available capacity 0. No provisioning strategy required	
Aug 20, 2015 6:08:10 AM hudson.slaves.NodeProvisioner$2 run	FINE: Queue length 0 is less than the available capacity 0. No provisioning strategy required	
...
   a node is provisioned sometime later for a different project...
...
Aug 20, 2015 8:50:54 AM hudson.model.Queue$BlockedItem leaveFINE: hudson.model.Queue$BlockedItem:hudson.matrix.MatrixProject@a3c7785[myMatrixProject]:71 no longer blocked 
 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 

[JIRA] [git-plugin] (JENKINS-27352) Git SCM polling is not triggered from a push notification with a parametrized branchspec

2015-08-21 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mark Waite commented on  JENKINS-27352 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Git SCM polling is not triggered from a push notification with a parametrized branchspec  
 
 
 
 
 
 
 
 
 
 
Daniel Horecki can you provide a more specific example so that the case you're describing can be investigated further? 
When the job is triggered by hand, I assume that means that it is launched through the Jenkins job page and the parameters are provided as part of that job. Is that correct? 
When build is triggered by commit notification, I assume that means an external process (curl, wget, etc.) invokes a commitNotify URL (http://your-jenkins/jenkins/commitNotify?more-details). Is that correct? If so, what are the details included in that commitNotify URL? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-30032) Git plugin cannot find ssh with Git for Windows version 2.5.0

2015-08-21 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Mark Waite edited a comment on  JENKINS-30032 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Git plugin cannot find ssh with Git for Windows version 2.5.0  
 
 
 
 
 
 
 
 
 
 DidyourestarttheJenkinsserverafterinstallinggitclientplugin1.19.0? Ifyoudid,thenIwillneedmoreinformationaboutyourgit2.5.0installationonWindows.Whichoptionsdidyousetwheninstallinggit2.5.0forWindows?Doesthecomputeralsohavecygwininstalled?Istheresomeotherpackageonthecomputerwhichmightbeprovidingssh.exe? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-30067) Long delays in hpi:run

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30067 
 
 
 
  Long delays in hpi:run  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Status:
 
 InProgress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-28154) IllegalArgumentException thrown when some binary operators are used

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28154 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: IllegalArgumentException thrown when some binary operators are used  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Oliver Gondža Path: src/main/resources/org/jenkinsci/plugins/scriptsecurity/sandbox/whitelists/generic-whitelist src/test/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest.java src/test/resources/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest/all.groovy http://jenkins-ci.org/commit/script-security-plugin/7868c5ed4e1e5a92247080625ca4a7f59dce56b7 Log: 

JENKINS-28154
 Reproduce in unittest 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-28154) IllegalArgumentException thrown when some binary operators are used

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28154 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: IllegalArgumentException thrown when some binary operators are used  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/resources/org/jenkinsci/plugins/scriptsecurity/sandbox/whitelists/generic-whitelist src/test/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest.java src/test/resources/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest/all.groovy http://jenkins-ci.org/commit/script-security-plugin/b8b421f6836e72bfaf865971e9fa2734700f2574 Log: Merge pull request #23 from jglick/olivergondza-excercise-operators 
[FIXED JENKINS-28154] Confirm fix of problem with operators 
Compare: https://github.com/jenkinsci/script-security-plugin/compare/7f3e2a73353f...b8b421f6836e 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-28154) IllegalArgumentException thrown when some binary operators are used

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-28154 
 
 
 
  IllegalArgumentException thrown when some binary operators are used  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 InProgress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [jobconfighistory-plugin] (JENKINS-30089) new config history created on each multibranch build

2015-08-21 Thread zow...@zowers.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Alexander Petrov created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30089 
 
 
 
  new config history created on each multibranch build  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Mirko Friedenhagen 
 
 
 

Components:
 

 jobconfighistory-plugin 
 
 
 

Created:
 

 21/Aug/15 2:39 PM 
 
 
 

Environment:
 

 jenkins 1.620 on debian sid 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Alexander Petrov 
 
 
 
 
 
 
 
 
 
 
we have Multi-Branch Project plugin installed https://wiki.jenkins-ci.org/display/JENKINS/Multi-Branch+Project+Plugin 
and every build of each multibranch project makes the jobconfighistory to save new configuration in the history though there are no changes in the config see also https://github.com/mjdetullio/multi-branch-project-plugin/issues/88 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 

[JIRA] [git-plugin] (JENKINS-27352) Git SCM polling is not triggered from a push notification with a parametrized branchspec

2015-08-21 Thread m...@morr.pl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Horecki commented on  JENKINS-27352 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Git SCM polling is not triggered from a push notification with a parametrized branchspec  
 
 
 
 
 
 
 
 
 
 
Using Jenkins LTS version 1.609.2 and git plugin 2.4.0. This fix may break builds when there are some default parameters. When job is triggered by hand, parameters are present. When build is triggered by commit notification, parameters are gone.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [websphere-deployer-plugin] (JENKINS-29725) Application starting issue websphere application server 8.5 after deployment Jenkins

2015-08-21 Thread gregpeter...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Greg Peters commented on  JENKINS-29725 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Application starting issue websphere application server 8.5 after deployment Jenkins  
 
 
 
 
 
 
 
 
 
 
Feel free to download v1.4.0 (beta) and test out the new features  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xunit-plugin] (JENKINS-18443) SkipNoTestFiles flag ignored. Build still set to failed if test files missing

2015-08-21 Thread edog...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Donovan commented on  JENKINS-18443 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: SkipNoTestFiles flag ignored. Build still set to failed if test files missing  
 
 
 
 
 
 
 
 
 
 
Hi I'm seeing this issue on xUnit 1.95, on Jenkins 1.565.1. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-26942) Easy to way to copy workspace files

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-26942 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Easy to way to copy workspace files  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: CHANGES.md aggregator/src/test/java/org/jenkinsci/plugins/workflow/steps/stash/StashTest.java api/src/main/java/org/jenkinsci/plugins/workflow/flow/StashManager.java basic-steps/src/main/java/org/jenkinsci/plugins/workflow/steps/ArtifactArchiverStep.java basic-steps/src/main/java/org/jenkinsci/plugins/workflow/steps/ArtifactUnarchiverStep.java basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/ArtifactArchiverStep/help.html basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/ArtifactUnarchiverStep/config.jelly demo/repo/Jenkinsfile job/src/main/java/org/jenkinsci/plugins/workflow/job/WorkflowRun.java support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep.java support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep.java support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/config.jelly support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-excludes.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-includes.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-name.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/config.jelly support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/help-name.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/help.html http://jenkins-ci.org/commit/workflow-plugin/3723c2148c11e58366da3423f3708e49a14cad37 Log: Merge pull request #186 from jglick/stash-

JENKINS-26942
 


JENKINS-26942
 Stash files 
Compare: https://github.com/jenkinsci/workflow-plugin/compare/bad7e47c1e0b...3723c2148c11 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 

[JIRA] [workflow-plugin] (JENKINS-26942) Easy to way to copy workspace files

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-26942 
 
 
 
  Easy to way to copy workspace files  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 InProgress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-26942) Easy to way to copy workspace files

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-26942 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Easy to way to copy workspace files  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: CHANGES.md aggregator/src/test/java/org/jenkinsci/plugins/workflow/steps/stash/StashTest.java api/src/main/java/org/jenkinsci/plugins/workflow/flow/StashManager.java demo/repo/Jenkinsfile job/src/main/java/org/jenkinsci/plugins/workflow/job/WorkflowRun.java support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep.java support/src/main/java/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep.java support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/config.jelly support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-excludes.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-includes.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help-name.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/StashStep/help.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/config.jelly support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/help-name.html support/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/stash/UnstashStep/help.html http://jenkins-ci.org/commit/workflow-plugin/1c4a4416ed06ec5311ffac57f26957eab831b03e Log: [FIXED JENKINS-26942] File stashing. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-26134) Shorter syntax for unarchive

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-26134 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Shorter syntax for unarchive  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: basic-steps/src/main/java/org/jenkinsci/plugins/workflow/steps/ArtifactUnarchiverStep.java basic-steps/src/main/resources/org/jenkinsci/plugins/workflow/steps/ArtifactUnarchiverStep/config.jelly http://jenkins-ci.org/commit/workflow-plugin/32e72ec33840aa8bd322b029972327956786565f Log: 

JENKINS-26134
 Deprecate unarchive. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ec2-plugin] (JENKINS-26493) Use new EC2 API endpoint hostnames

2015-08-21 Thread mstadelm...@atex.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Stadelmann edited a comment on  JENKINS-26493 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Use new EC2 API endpoint hostnames  
 
 
 
 
 
 
 
 
 
 Startinginstancesineu-central-1stilldoesnotworkformeeventhoughIusethelatestversion(1.29)oftheAmazonEC2plugin. Seeexcerptofthejenkins.log:{quote}Aug21,20156:51:10AMcom.amazonaws.http.AmazonHttpClientexecuteHelperINFO:UnabletoexecuteHTTPrequest:eu-central-1.ec2.amazonaws.comjava.net.UnknownHostException:eu-central-1.ec2.amazonaws.comatjava.net.InetAddress.getAllByName0(InetAddress.java:1280)atjava.net.InetAddress.getAllByName(InetAddress.java:1192)...atjava.lang.Thread.run(Thread.java:745){quote} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [git-plugin] (JENKINS-27352) Git SCM polling is not triggered from a push notification with a parametrized branchspec

2015-08-21 Thread m...@morr.pl (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Horecki commented on  JENKINS-27352 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Git SCM polling is not triggered from a push notification with a parametrized branchspec  
 
 
 
 
 
 
 
 
 
 
After downgrading to git plugin 2.3.5 situation is normal - both triggers have parameters set. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [websphere-deployer-plugin] (JENKINS-29725) Application starting issue websphere application server 8.5 after deployment Jenkins

2015-08-21 Thread asw...@sunamerica.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ansuman Swain commented on  JENKINS-29725 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Application starting issue websphere application server 8.5 after deployment Jenkins  
 
 
 
 
 
 
 
 
 
 
That is awesome Greg. i will check with that and let you know in case of any issues/findings. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-26126) DSLD and/or GDSL

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-26126 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: DSLD and/or GDSL  
 
 
 
 
 
 
 
 
 
 
Should also be able to emit (for example) HTML for static reference guides. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev commented on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 
The issue is in these two methods: https://github.com/jenkinsci/envinject-plugin/blob/master/src/main/java/org/jenkinsci/plugins/envinject/EnvInjectPluginAction.java#L46-L63 
Nicolas modified getEnvInjectVarList() in order to prevent the vars exposure to getTarget(). buildEnvVars() also uses this method =  sneak to environment variables in some cases 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cloudformation-plugin] (JENKINS-30079) Project not released correctly, github shows a 1.0 tag

2015-08-21 Thread edov...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 edovale resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
Thanks for pointing this out. I have push a proper release. Should be available via update in a few hours. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-30079 
 
 
 
  Project not released correctly, github shows a 1.0 tag  
 
 
 
 
 
 
 
 
 

Change By:
 
 edovale 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-28840) Deadlock between Queue.maintain and Executor.interrupt

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28840 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Deadlock between Queue.maintain and Executor.interrupt  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: pom.xml http://jenkins-ci.org/commit/workflow-plugin/b9c94e110085b41ebea5b587ee6d8fc7a48a5dec Log: Updating baseline to 1.609.2 to pick up 

JENKINS-28840
 fix. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [multiple-scms-plugin] (JENKINS-26303) Not compatible with Subversion plugin 2.5

2015-08-21 Thread david.tad...@seebyte.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Dave Taddei reopened an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
This now appears to occur with Subversion plugin 2.5.2 also  
00:00:04.041 FATAL: org.jenkinsci.plugins.multiplescms.MultiSCMRevisionState cannot be cast to hudson.scm.SVNRevisionState 00:00:04.041 java.lang.ClassCastException: org.jenkinsci.plugins.multiplescms.MultiSCMRevisionState cannot be cast to hudson.scm.SVNRevisionState 00:00:04.042 at hudson.scm.SubversionSCM.calcChangeLog(SubversionSCM.java:726) 00:00:04.042 at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:861) 00:00:04.042 at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:129) 00:00:04.042 at hudson.scm.SCM.checkout(SCM.java:485) 00:00:04.042 at hudson.model.AbstractProject.checkout(AbstractProject.java:1284) 00:00:04.042 at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:610) 00:00:04.042 at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86) 00:00:04.042 at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:532) 00:00:04.042 at hudson.model.Run.execute(Run.java:1741) 00:00:04.042 at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:531) 00:00:04.042 at hudson.model.ResourceController.execute(ResourceController.java:98) 00:00:04.042 at hudson.model.Executor.run(Executor.java:381) 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-26303 
 
 
 
  Not compatible with Subversion plugin 2.5  
 
 
 
 
 
 
 
 
 

Change By:
 
 Dave Taddei 
 
 
 

Resolution:
 
 Fixed 
 
 
 

Status:
 
 Resolved Reopened 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
   

[JIRA] [core] (JENKINS-28840) Deadlock between Queue.maintain and Executor.interrupt

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28840 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Deadlock between Queue.maintain and Executor.interrupt  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: pom.xml http://jenkins-ci.org/commit/workflow-plugin/5618084d59d6de7bec6a8b862801a7349dbc8964 Log: Merge pull request #184 from jglick/1.609.2 
Updating baseline to 1.609.2 to pick up 

JENKINS-28840
 fix 
Compare: https://github.com/jenkinsci/workflow-plugin/compare/da97432f26ad...5618084d59d6 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ec2-plugin] (JENKINS-26493) Use new EC2 API endpoint hostnames

2015-08-21 Thread mstadelm...@atex.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Stadelmann reopened an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
Starting instances in eu-central-1 still does not work for me even though I use the latest version (1.29) of the Amazon EC2 plugin. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-26493 
 
 
 
  Use new EC2 API endpoint hostnames  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Stadelmann 
 
 
 

Resolution:
 
 Duplicate 
 
 
 

Status:
 
 Resolved Reopened 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-26126) DSLD and/or GDSL

2015-08-21 Thread pembert...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Andy Pemberton commented on  JENKINS-26126 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: DSLD and/or GDSL  
 
 
 
 
 
 
 
 
 
 
A generic @Extension point that allows other plugins to implement other output formats (GDSL, DSLD, HTML, ... etc.) seems like the route to take. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [parameterized-remote-trigger-plugin] (JENKINS-28958) Parameters from file not passed to downstream job

2015-08-21 Thread trey.bo...@ni.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Trey Bohon commented on  JENKINS-28958 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Parameters from file not passed to downstream job  
 
 
 
 
 
 
 
 
 
 
Thanks for the workaround, this impacted us too. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [zaproxy-plugin] (JENKINS-29686) ZAP process is left running if build is aborted

2015-08-21 Thread dave.h...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Dave Hunt commented on  JENKINS-29686 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: ZAP process is left running if build is aborted  
 
 
 
 
 
 
 
 
 
 
I've been unable to replicate this today, but I did notice that if I abort a build it's marked as successful instead of aborted. I still think it's worth switching the plugin to a build wrapper rather than a build step, and I've been able to implement a simple start/stop wrapper here: https://github.com/jenkinsci/zaproxy-plugin/compare/master...davehunt:build-wrapper 
I stopped there because I'm not sure I fully understand the plugin architecture enough. With some guidance I'd be happy to continue. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [script-security-plugin] (JENKINS-28154) IllegalArgumentException thrown when some binary operators are used

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-28154 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: IllegalArgumentException thrown when some binary operators are used  
 
 
 
 
 
 
 
 
 
 
Should be fixed in 1.15. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-30055) Simple script with long loop created unloadable flow

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30055 
 
 
 
  Simple script with long loop created unloadable flow  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Labels:
 
 randomrobustness 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-27382 
 
 
 
  EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 

Change By:
 
 Oleg Nenashev 
 
 
 

Summary:
 
 EnvInjectpluginpassesastrisk EnvInjectPluginAction::buildEnvVars()injectsmasksinsteadofpasswords to Gradleplugin theenvironment 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-30055) Simple script with long loop created unloadable flow

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-30055 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Simple script with long loop created unloadable flow  
 
 
 
 
 
 
 
 
 
 
Smells like a race condition: perhaps a reference to a new flow node is saved before the node itself is. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [teamconcert-plugin] (JENKINS-29130) RTC Polling broken when Proxy enabled

2015-08-21 Thread djo...@paychex.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 David Jozis commented on  JENKINS-29130 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: RTC Polling broken when Proxy enabled  
 
 
 
 
 
 
 
 
 
 
http.proxyHost and http.proxyPort are working fine. http.nonProxyHosts is not respected. Can you verify that when you're hitting a host that matches a nonProxyHosts pattern, that it is hitting the target directly? In our environment, the proxy will is not able to forward requests to the host we have added to nonProxyHosts. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-30084) FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.

2015-08-21 Thread te...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Nord created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30084 
 
 
 
  FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 core 
 
 
 

Created:
 

 21/Aug/15 1:11 PM 
 
 
 

Environment:
 

 Jenkins 1.609.2  matrix project 1.6 (and others?) 
 
 
 

Labels:
 

 regression flyweight queue 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 James Nord 
 
 
 
 
 
 
 
 
 
 
When a flyweighttask is limited to run on a specific label (e.g. matrix project set restrict where this project can run) if there are no nodes with that label available when it enters the queue then it will immediatly move to blocked. 
As it is blocked the Node provisioner will not attempt to create any slaves, so the project will sit in the queue forever (or until some other project allocates a slave with the correct label). 
Seems to be a regression introduced by 


[JIRA] [core] (JENKINS-30084) FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.

2015-08-21 Thread te...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Nord commented on  JENKINS-30084 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: FlyWeightTasks tied to a label will not cause node provisioning and will be blocked forever.  
 
 
 
 
 
 
 
 
 
 
looks like it was caused by 

JENKINS-24519
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xunit-plugin] (JENKINS-18443) SkipNoTestFiles flag ignored. Build still set to failed if test files missing

2015-08-21 Thread edog...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Donovan edited a comment on  JENKINS-18443 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: SkipNoTestFiles flag ignored. Build still set to failed if test files missing  
 
 
 
 
 
 
 
 
 
 HiI'mseeingthisissueonxUnit1.95,onJenkins1.565.1. Thatis,theinabililtytosavetheoptiontoskipifnoreportfilesarefound. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInject plugin passes astrisk to Gradle plugin

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto commented on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInject plugin passes astrisk to Gradle plugin  
 
 
 
 
 
 
 
 
 
 
Oleg Nenashev Thanks for your clue. 
A PR have been sent. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [subversion-plugin] (JENKINS-30085) SVN- authentication fails

2015-08-21 Thread loganathan.chinnas...@in.bosch.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Loganathan C created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30085 
 
 
 
  SVN- authentication fails   
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Attachments:
 

 subversion-plugin-issue.png, SVN-Pluging issue.txt 
 
 
 

Components:
 

 subversion-plugin 
 
 
 

Created:
 

 21/Aug/15 1:46 PM 
 
 
 

Environment:
 

 Windows 2008R2 server, Master-slave setup.  
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Loganathan C 
 
 
 
 
 
 
 
 
 
 
We are able to checkout the svn folder using windows batch scripts. But in the job, under Subversion Plug-in if entre the SVN repo link, say the error it attached for for reference. Note: for access svn repo link, need two authentication, 1, proxy server authentication 2, SVN server authentication. 
 
 
 
 
 
 
 
 
 
 
 

[JIRA] [sauce-ondemand-plugin] (JENKINS-30065) SELENIUM_PLATFORM not always properly set when using Matrix Axis - Sauce Labs WebDriver tests

2015-08-21 Thread elga...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Leo Gallucci commented on  JENKINS-30065 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: SELENIUM_PLATFORM not always properly set when using Matrix Axis - Sauce Labs WebDriver tests  
 
 
 
 
 
 
 
 
 
 
Also `SELENIUM_DRIVER` needs to be updated. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-30088) Clean up step display

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30088 
 
 
 
  Clean up step display  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Jesse Glick 
 
 
 

Components:
 

 workflow-plugin 
 
 
 

Created:
 

 21/Aug/15 2:37 PM 
 
 
 

Labels:
 

 usability ui 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Jesse Glick 
 
 
 
 
 
 
 
 
 
 
Adjust how steps are displayed, to make the appearance cleaner and keep a focus on the DSL. Suggested changes: 
 

Make Snippet Generator list the StepDescriptor.functionName first, as a sort key, followed by the StepDescriptor.displayName. So for example, you might see a pulldown entry sh: run a Unix shell script.
 

Change the console log to print just the functionName, not the displayName. 
 

For steps which add LabelAction, like stage, follow the function name with the label: stage: Production. That probably means this call is no longer useful.
 


[JIRA] [workflow-plugin] (JENKINS-30086) Clean up step help

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30086 
 
 
 
  Clean up step help  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 Jesse Glick 
 
 
 

Components:
 

 workflow-plugin 
 
 
 

Created:
 

 21/Aug/15 2:36 PM 
 
 
 

Labels:
 

 usability help 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Jesse Glick 
 
 
 
 
 
 
 
 
 
 
Somebody needs to go through Snippet Generator to review every known Workflow step, checking that: 
 

its display name is comprehensible and follows a consistent format
 

it has an inline help block (help.html next to config.jelly) describing the purpose of the step
 

all attributes have help blocks (help-attrName.html) unless the meaning of the attribute is immediately obvious from its title and form control
 
 
 
 
 
 
 
 
   

[JIRA] [jobgenerator-plugin] (JENKINS-27219) Job generator config loses Custom Workspace everytime the configuration is edited

2015-08-21 Thread carpentier...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christophe Carpentier commented on  JENKINS-27219 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Job generator config loses Custom Workspace everytime the configuration is edited  
 
 
 
 
 
 
 
 
 
 
Definitely annoying  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [jira-plugin] (JENKINS-28946) JIRA support for Workflow jobs

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
The stack trace does not match 1.41 source code. 
Anyway I suspect this is the problem, coming from this which does not support Workflow. I am not sure how you even got here, since the job property does not claim to support Workflow in the first place, but maybe you are coming at it from another direction. 
The upshot is that (a) the plugin would require some changes in order to correctly handle Workflow jobs—a feature request, (b) as written it makes unwarranted assumptions which can lead to runtime exceptions when violated—a bug. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-28946 
 
 
 
  JIRA support for Workflow jobs  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Summary:
 
 Errorwhileaccessing JIRA issues supportforWorkflowjobs 
 
 
 

Component/s:
 
 workflow-plugin 
 
 
 

Assignee:
 
 JesseGlick 
 
 
 

Labels:
 
 workflow 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
  

[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-27382 
 
 
 
  EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Jess Recena Soto 
 
 
 

Status:
 
 InProgress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30090) Add a direct unit test for JENKINS-27382

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto assigned an issue to Manuel Jess Recena Soto 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30090 
 
 
 
  Add a direct unit test for JENKINS-27382  
 
 
 
 
 
 
 
 
 

Change By:
 
 Manuel Jess Recena Soto 
 
 
 

Assignee:
 
 OlegNenashev ManuelJessRecenaSoto 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30090) Add a direct unit test for JENKINS-27382

2015-08-21 Thread rec...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Manuel Jess Recena Soto started work on  JENKINS-30090 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 

Change By:
 
 Manuel Jess Recena Soto 
 
 
 

Status:
 
 Open InProgress 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [mercurial-plugin] (JENKINS-29945) Mercurial notifyCommit cause java.lang.NullPointerException

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-29945 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Mercurial notifyCommit cause java.lang.NullPointerException  
 
 
 
 
 
 
 
 
 
 

 

java.lang.NullPointerException
	at hudson.triggers.SCMTrigger$Runner.hashCode(SCMTrigger.java:572)
	at java.util.HashMap.hash(HashMap.java:362)
	at java.util.HashMap.put(HashMap.java:492)
	at hudson.util.SequentialExecutionQueue.execute(SequentialExecutionQueue.java:65)
	at hudson.triggers.SCMTrigger.run(SCMTrigger.java:143)
	at hudson.triggers.SCMTrigger.run(SCMTrigger.java:120)
	at hudson.plugins.mercurial.MercurialStatus.handleNotifyCommit(MercurialStatus.java:117)
	at hudson.plugins.mercurial.MercurialStatus.doNotifyCommit(MercurialStatus.java:75)
 

 
Code 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev edited a comment on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 
 Adjustedthe text issuetitle .mygut-feelingisthatmanyotherissuescanbeclosedasduplicates 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-28178) Option to disable sandbox in CpsScmFlowDefinition

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-28178 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Option to disable sandbox in CpsScmFlowDefinition  
 
 
 
 
 
 
 
 
 
 
No, currently multibranch does reuse CpsScmFlowDefinition including the forced sandbox=true. 
Probably this needs to be handled in that case using a BranchProperty: while you may be comfortable permitting unsandboxed execution from Jenkinsfile contents in origin/master, you would not want to allow that in a pull request on a publicly visible repository. TBD what the policy should be: allowing a customized Jenkinsfile if run in the sandbox, or just pinning a Jenkinsfile from the base branch you control. 
In other words, I consider the multibranch variant of this issue to be distinct. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [core] (JENKINS-29945) Mercurial notifyCommit cause java.lang.NullPointerException

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick assigned an issue to Kanstantsin Shautsou 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-29945 
 
 
 
  Mercurial notifyCommit cause java.lang.NullPointerException  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Component/s:
 
 core 
 
 
 

Component/s:
 
 mercurial-plugin 
 
 
 

Assignee:
 
 JesseGlick KanstantsinShautsou 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [xvfb-plugin] (JENKINS-28928) Make XvfbBuildWrapper extend SimpleBuildWrapper

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28928 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Make XvfbBuildWrapper extend SimpleBuildWrapper  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: COMPATIBILITY.md http://jenkins-ci.org/commit/workflow-plugin/4b7a12287d9bf5401c57378513814e0af3482585 Log: 

JENKINS-28928
 Noting. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-29990) NPE from CpsCallableInvocation.init when passing null to one-arg method

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-29990 
 
 
 
  NPE from CpsCallableInvocation.init when passing null to one-arg method  
 
 
 
 
 
 
 
 
 
 

 

java.lang.NullPointerException
	at java.util.Objects.requireNonNull(Objects.java:203)
	at java.util.Arrays$ArrayList.init(Arrays.java:3813)
	at java.util.Arrays.asList(Arrays.java:3800)
	at com.cloudbees.groovy.cps.impl.CpsCallableInvocation.init(CpsCallableInvocation.java:27)
	at …
	at WorkflowScript.testMethod(WorkflowScript)
	at …
 

 
Groovy apparently thinks it is a good idea to pass null rather than [null], which the CPS engine was not expecting. I think this is a varargs issue: null is ambiguous in Java, too, if you have a varargs method, and everything in Groovy is pretty loose and undocumented. 
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Summary:
 
 Nullpointerexceptiononmethodswithoneparameterandprovidedvalueis NPEfromCpsCallableInvocation.initwhenpassing null toone-argmethod 
 
 
 

Labels:
 
 groovy 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
 

[JIRA] [promoted-builds-plugin] (JENKINS-22679) Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.

2015-08-21 Thread bruce.e...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Bruce Edge commented on  JENKINS-22679 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.  
 
 
 
 
 
 
 
 
 
 
Still broken in 2.21 release. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [promoted-builds-plugin] (JENKINS-22679) Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.

2015-08-21 Thread bruce.e...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Bruce Edge edited a comment on  JENKINS-22679 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.  
 
 
 
 
 
 
 
 
 
 Stillbrokenin2.21release. Waspullrequest#49fromwgreven/JENKINS-22679notmerged? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-29188) api URL for REST API is not available for flowGraphTable

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-29188 
 
 
 
  api URL for REST API is not available for flowGraphTable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 
 
 
 
 
 
 
 TheRESTAPIisn'tavailableforaccesstostepstatethroughtheworkflowrunningstepspage.e.g.athttp://server:8080//job/jobname/jobnum/flowGraphTable/apiIwouldexpecttoseeaRESTAPIpage,indeedthereisalinkatthebottomoftheflowGraphTablepagetotheRESTAPIpagethatdoesnotexist.AttheJUCinLondonJessetoldmethatthiswasprobablyjustabug,butifyouwanttomakethisafeature/improvementrequestthat'sfinetoo:)IngeneralIthinkitwouldbemassivelyusefultohaveaccesstostatefulinformationfortheworkflowthroughtheRESTAPIi.e.thoughXMLorJSON.Thatwillallowforbetterflexibilityofuseandpresentationofthedata.MoreoveritwouldalsobeniceforgroovyworkflowscriptdeveloperstobeabletoinjectstatesuchthatitcanbediscoverablethroughtheRESTAPI.e.g.toprovidecontextualinformationaboutaparticularstepintheworkflow.Inthissenseperhapsitcouldbelinkedwith [https://issues.jenkins-ci.org/browse/ JENKINS-26107 ] ,orasimilarfeaturethatwouldallowgroovyworkflowscriptstofeedbackstatefulinformationtothepresentationlayer.ThoughIsupposethiscouldbefudgedintheshortterme.g.bysavingthisdatainXML/JSONasartifactswhichcanbepresentedthroughtherestAPIthroughthepageforthejob. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit 

[JIRA] [cloudfoundry-plugin] (JENKINS-29717) Exception during push

2015-08-21 Thread willi...@activestate.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 William Gautier commented on  JENKINS-29717 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Exception during push  
 
 
 
 
 
 
 
 
 
 
On second thought, I've decided to temporarily include my version of the cf-java-client which includes the fix from the pull request, until my pull request gets included in a new version of the upstream repo (which might take some time considering the latest commit is 2 months ago) 
So the Jenkins plugin v1.4.2 will correctly show you a CloudOperationException with the error message from the target. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-29819) extend node to return a list of all matching nodes

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-29819 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: extend node to return a list of all matching nodes  
 
 
 
 
 
 
 
 
 
 
There is no need to copy implementations from existing steps. docker-workflow defines a custom DSL that is available out of the box to flows, which internally runs lower-level steps (node and parallel in this case) as well as other code (some call to the Jenkins APIs in this case) but wraps it all in idiomatic constructs. 


JENKINS-26135
, merged toward 1.10, actually makes this possible to do without a custom plugin, on a per-site basis, which if nothing else is a good way to experiment with a proposed DSL in advance of formalizing it in a published plugin. (In older versions of Workflow, you can do something similar at the cost of a slightly more verbose syntax.) 
Not sure about the interaction of the Jenkins API call with the sandbox. IIRC anything in a global lib runs without the sandbox and so can freely make those calls (thus JENKINS-26538). If you have a custom plugin this is a non-issue since you can always add any @Whitelisted static methods you find useful (and safe). 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev commented on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 
 
Adjusted the text. my gut-feeling is that many other issues can be closed as duplicates 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [docker-plugin] (JENKINS-28429) Memory leak of hudson.remoting.Channel

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-28429 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Memory leak of hudson.remoting.Channel  
 
 
 
 
 
 
 
 
 
 
Possible duplicate of 

JENKINS-28844
. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev commented on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 
 
Created JENKINS-30090 for tests. The fix has been relelased in 1.92.1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-29978) Tutorial fails on node configuration git

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick resolved as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
Sounds like you are running an old version of the Git plugin. (Did not specify Git or Jenkins versions here.) The acceptance test passes AFAIK. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-29978 
 
 
 
  Tutorial fails on node configuration git   
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 CannotReproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [workflow-plugin] (JENKINS-29188) api URL for REST API is not available for flowGraphTable

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick commented on  JENKINS-29188 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: api URL for REST API is not available for flowGraphTable  
 
 
 
 
 
 
 
 
 
 
Seems like this is a mixture of two unrelated things: 
 

Exposing an Api for what is already defined in the flow graph, or fixing some broken link perhaps.
 

Creating a new feature (step? something else?) for enhancing the flow graph with more information, which by the way should be exported in the API too.
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-27382) EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-27382 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Oleg Nenashev Path: src/main/java/org/jenkinsci/plugins/envinject/EnvInjectPluginAction.java http://jenkins-ci.org/commit/envinject-plugin/d0cfe58eb9f57b31b93ea6add47c43eb1cbc6728 Log: Merge pull request #65 from recena/JENKINS-27382 
JENKINS-27382 EnvInjectPluginAction::buildEnvVars() injects masks instead of passwords to the environment 
Compare: https://github.com/jenkinsci/envinject-plugin/compare/3dcf5aee55ab...d0cfe58eb9f5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [envinject-plugin] (JENKINS-30090) Add a direct unit test for JENKINS-27382

2015-08-21 Thread o.v.nenas...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Oleg Nenashev created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30090 
 
 
 
  Add a direct unit test for JENKINS-27382  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Oleg Nenashev 
 
 
 

Components:
 

 envinject-plugin 
 
 
 

Created:
 

 21/Aug/15 4:03 PM 
 
 
 

Labels:
 

 test 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Oleg Nenashev 
 
 
 
 
 
 
 
 
 
 
We agreed to create a unit test later to prevent further regressions. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


   

[JIRA] [xunit-plugin] (JENKINS-29175) Latest Test Result links displays twice on Maven project type when using xunit plugin

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick assigned an issue to Gregory Boissinot 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
Assigning to XUnit plugin for evaluation. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-29175 
 
 
 
  Latest Test Result links displays twice on Maven project type when using xunit plugin  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Component/s:
 
 junit-plugin 
 
 
 

Assignee:
 
 JesseGlick GregoryBoissinot 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [promoted-builds-plugin] (JENKINS-22679) Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.

2015-08-21 Thread bruce.e...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Bruce Edge edited a comment on  JENKINS-22679 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.  
 
 
 
 
 
 
 
 
 
 Stillbrokenin2.21release.Waspullrequest#49fromwgreven/JENKINS-22679notmerged? Promotionusing2.21shows:+relpath=releases///QA/172revertingbackto2.15:+relpath=releases/Collections/develop/QA/172 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [promoted-builds-plugin] (JENKINS-22679) Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.

2015-08-21 Thread bruce.e...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Bruce Edge edited a comment on  JENKINS-22679 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Regression, Promoted builds plugin not expanding job parameters on immediate promote after build.  
 
 
 
 
 
 
 
 
 
 Stillbrokenin2.21release.Waspullrequest#49fromwgreven/JENKINS-22679notmerged?Promotionusing2.21shows:+relpath=releases///QA/172revertingbackto2.15:+relpath=releases/Collections/develop/QA/172 Stillclearlydroppingenv-injectparameters. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cucumber-testresult-plugin] (JENKINS-30081) Failing the build if all tests failed should be optional.

2015-08-21 Thread te...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Nord closed an issue as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30081 
 
 
 
  Failing the build if all tests failed should be optional.  
 
 
 
 
 
 
 
 
 

Change By:
 
 James Nord 
 
 
 

Status:
 
 Open Closed 
 
 
 

Resolution:
 
 CannotReproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cucumber-testresult-plugin] (JENKINS-30081) Failing the build if all tests failed should be optional.

2015-08-21 Thread te...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 James Nord commented on  JENKINS-30081 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Failing the build if all tests failed should be optional.  
 
 
 
 
 
 
 
 
 
 
This is not the behaviour. Failed tests do not fall the build. If you are seeing this phase reopen with json, job configuration and log from a failed build. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [build-monitor-plugin] (JENKINS-30094) Build monitor blank

2015-08-21 Thread krachyn...@ice-edge.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ken Rachynski created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-30094 
 
 
 
  Build monitor blank  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Components:
 

 build-monitor-plugin 
 
 
 

Created:
 

 21/Aug/15 8:55 PM 
 
 
 

Environment:
 

 jenkins 1.622, build-monitor-plugin 1.6+build.150, build-failure-analyzer-plugin 1.13.0, claim-plugin 2.7 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Ken Rachynski 
 
 
 
 
 
 
 
 
 
 
This may be related to JENKINS-28102. 
I was trying to tune up failure searches in the build-failure-analyzer today and noticed that my build-monitor views stopped working in that they were showing the header, footer and background, but no actual job tiles. Looking into the logs, it appears that build-monitor is trying to invoke build-failure-analyzer and failing to find it.  
I may try removing build-failure-analyzer to see if that fixes build-monitor, but I'll wait on your advice first in case you can think of something else I can look at to troubleshoot. 
Log follows: 
Aug 21, 2015 2:15:41 PM WARNING org.kohsuke.stapler.HttpResponseRenderer$Default handleJavaScriptProxyMethodCall call to /$stapler/bound/0ebc8003-0cb7-4441-a764-599414a716b4/fetchJobViews failed java.lang.NoClassDefFoundError: 

[JIRA] [seleniumhtmlreport-plugin] (JENKINS-28388) Make SeleniumHtmlReportPublisher a SimpleBuildStep

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-28388 
 
 
 
  Make SeleniumHtmlReportPublisher a SimpleBuildStep  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Labels:
 
 workflow 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [view-job-filters-plugin] (JENKINS-21862) Build Filter (Wrapper) column not properly showing results for Parameterized builds

2015-08-21 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jesse Glick resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
https://github.com/jenkinsci/view-job-filters-plugin/pull/5 claims to fix this. I do not know. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-21862 
 
 
 
  Build Filter (Wrapper) column not properly showing results for Parameterized builds  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jesse Glick 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [view-job-filters-plugin] (JENKINS-18986) Fencepost error in AbstractBuildTrendFilter.amount

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-18986 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Fencepost error in AbstractBuildTrendFilter.amount  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: pom.xml src/test/java/hudson/views/AbstractBuildTrendFilterTest.java src/test/java/hudson/views/RunLoadCounter.java http://jenkins-ci.org/commit/view-job-filters-plugin/cab74288065027000e6e2fb9327a004e502b2208 Log: 

JENKINS-18986
 AbstractBuildTrendFilterTest seems to be running fine. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [view-job-filters-plugin] (JENKINS-20522) Should use DescriptorVisibilityFilter from JobTypeFilter

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-20522 
 
 
 
  Should use DescriptorVisibilityFilter from JobTypeFilter  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 InProgress Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [hipchat-plugin] (JENKINS-28314) Support non-notify messages

2015-08-21 Thread johnston.la...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Lance Johnston commented on  JENKINS-28314 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Support non-notify messages  
 
 
 
 
 
 
 
 
 
 
+1 ... Just installed the hipchat plugin and am amazed that popups in rooms is not an option. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [view-job-filters-plugin] (JENKINS-29747) Add fallback filters

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-29747 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Add fallback filters  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: src/main/java/hudson/views/AddRemoveFallbackFilter.java src/main/resources/hudson/views/AddRemoveFallbackFilter/config.jelly src/main/webapp/add-remove-fallback-help.html src/test/java/hudson/views/AddRemoveFallbackFilterTest.java http://jenkins-ci.org/commit/view-job-filters-plugin/99b6783faa0e1bef231a90aea2e0ad586b5863fa Log: Add Fallback Filters. Fixes 

JENKINS-29747
. (Originally in svn as r41369 by davidparsson.) 
Compare: https://github.com/jenkinsci/view-job-filters-plugin/compare/c63d2438c05b...99b6783faa0e 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [view-job-filters-plugin] (JENKINS-20522) Should use DescriptorVisibilityFilter from JobTypeFilter

2015-08-21 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-20522 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Should use DescriptorVisibilityFilter from JobTypeFilter  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Jesse Glick Path: pom.xml src/main/java/hudson/views/JobTypeFilter.java src/main/java/hudson/views/MavenExtraStepsValuesHelper.java src/main/resources/hudson/views/JobTypeFilter/config.jelly http://jenkins-ci.org/commit/view-job-filters-plugin/fb754c204acebc22c08111e5c4aa38f53e7d858a Log: [FIXED JENKINS-20522] Proper usage of TopLevelItemDescriptor. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >