[JIRA] (JENKINS-41798) Duration of running jobs on BO activity page resets to 0 on reload

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Duplicate of JENKINS-41686  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41798  
 
 
  Duration of running jobs on BO activity page resets to 0 on reload   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41535) NodeJS installation configuration is not persisted to file

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41535  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NodeJS installation configuration is not persisted to file   
 

  
 
 
 
 

 
 Code changed in jenkins User: Nikolas Falco Path: src/test/java/jenkins/plugins/nodejs/tools/NodeJSInstallationTest.java src/test/resources/jenkins/plugins/nodejs/tools/NodeJSInstallationTest/test_load_at_startup/jenkins.plugins.nodejs.tools.NodeJSInstallation.xml http://jenkins-ci.org/commit/nodejs-plugin/5993ea7074b9ba9365b70e6ec3112e451b2837e8 Log: JENKINS-41535 Add a new test case  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41830) SCM - Cloning multiple git repositories in parallel causes same change multiple times in pipeline job

2017-02-07 Thread shahmis...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 mishal shah updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41830  
 
 
  SCM - Cloning multiple git repositories in parallel causes same change multiple times in pipeline job   
 

  
 
 
 
 

 
Change By: 
 mishal shah  
 

  
 
 
 
 

 
 Build page contain same change list multiple times, when using parallel in pipeline.  {code:java} ``` parallel ("test1" : {  checkout([$class: 'GitSCM', branches: [[ name: 'master' ]], doGenerateSubmoduleConfigurations: false, extensions: [[ $class: 'RelativeTargetDirectory', relativeTargetDir: 'test1' ],[ $class: 'ScmName', name: 'test1' ]], submoduleCfg: [], userRemoteConfigs: [[ credentialsId: 'test', url: 'ssh://g...@github.com/test1' ]]])},"test2" : {  checkout([$class: 'GitSCM', branches: [[ name: 'master' ]], doGenerateSubmoduleConfigurations: false, extensions: [[ $class: 'RelativeTargetDirectory', relativeTargetDir: 'test2' ],[ $class: 'ScmName', name: 'test2' ]], submoduleCfg: [], userRemoteConfigs: [[ credentialsId: 'test', url: 'ssh://g...@github.com/test2' ]]]) },"test3" : {  checkout([$class: 'GitSCM', branches: [[ name: 'master' ]], doGenerateSubmoduleConfigurations: false, extensions: [[ $class: 'RelativeTargetDirectory', relativeTargetDir: 'test3' ],[ $class: 'ScmName', name: 'test3' ]], submoduleCfg: [], userRemoteConfigs: [[ credentialsId: 'test', url: 'ssh://g...@github.com/test3' ]]]) } ){code}  
 

  
 
 
 
 

 
 
 

   

[JIRA] (JENKINS-41830) SCM - Cloning multiple git repositories in parallel causes same change multiple times in pipeline job

2017-02-07 Thread shahmis...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 mishal shah created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41830  
 
 
  SCM - Cloning multiple git repositories in parallel causes same change multiple times in pipeline job   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Paul Wellner Bou  
 
 
Components: 
 git-changelog-plugin  
 
 
Created: 
 2017/Feb/08 12:58 AM  
 
 
Environment: 
 Jenkins 2.32.2  
 
 
Priority: 
  Major  
 
 
Reporter: 
 mishal shah  
 

  
 
 
 
 

 
 Build page contain same change list multiple times, when using parallel in pipeline.  

 

```
parallel (
"test1" : {
  checkout([
$class: 'GitSCM',
branches: [[
name: 'master'
]],
doGenerateSubmoduleConfigurations: false,
extensions: [[
$class: 'RelativeTargetDirectory',
relativeTargetDir: 'test1'
],[
$class: 'ScmName',
name: 'test1'
]],
submoduleCfg: [],
userRemoteConfigs: [[
credentialsId: 'test',
url: 'ssh://g...@github.com/test1'
]]
])
},
"test2" : {
  checkout([
$class: 'GitSCM',
branches: [[
name: 'master'
]],
doGenerateSubmoduleConfigurations: false,
extensions: [[
$class: 'RelativeTargetDirectory',
  

[JIRA] (JENKINS-41535) NodeJS installation configuration is not persisted to file

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41535  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NodeJS installation configuration is not persisted to file   
 

  
 
 
 
 

 
 Code changed in jenkins User: Nikolas Falco Path: src/test/java/jenkins/plugins/nodejs/tools/NodeJSInstallationTest.java src/test/resources/jenkins/plugins/nodejs/tools/NodeJSInstallationTest/load_at_startup/jenkins.plugins.nodejs.tools.NodeJSInstallation.xml http://jenkins-ci.org/commit/nodejs-plugin/98dfda43d6546145e2f50ddf935d0daefc6c9ff7 Log: JENKINS-41535 Add a new test case  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41829) Blue Ocean - Add node name for each stage

2017-02-07 Thread shahmis...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 mishal shah created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41829  
 
 
  Blue Ocean - Add node name for each stage   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2017/Feb/08 12:46 AM  
 
 
Environment: 
 Jenkins 2.32.2  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 mishal shah  
 

  
 
 
 
 

 
 Blue Ocean UI should display information about which node it executed the stage on.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

[JIRA] (JENKINS-41823) SMTP server showing unknown host name

2017-02-07 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck closed an issue as Not A Defect  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 This is an issue tracker, not a support site.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41823  
 
 
  SMTP server showing unknown host name
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Status: 
 In Progress Closed  
 
 
Resolution: 
 Not A Defect  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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

[JIRA] (JENKINS-41762) NodeJS plugin not updating PATH as expected

2017-02-07 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41762  
 
 
  NodeJS plugin not updating PATH as expected   
 

  
 
 
 
 

 
Change By: 
 Nikolas Falco  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41823) SMTP server showing unknown host name

2017-02-07 Thread stephen.alan.conno...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stephen Connolly commented on  JENKINS-41823  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: SMTP server showing unknown host name
 

  
 
 
 
 

 
 Assigning to Sai tharun nelaballi who moved this issue to In Progress and probably assigned the issue to me by mistake (as I do not have any history of interaction with the email-ext plugin)   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41823) SMTP server showing unknown host name

2017-02-07 Thread stephen.alan.conno...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stephen Connolly assigned an issue to Sai tharun nelaballi  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41823  
 
 
  SMTP server showing unknown host name
 

  
 
 
 
 

 
Change By: 
 Stephen Connolly  
 
 
Assignee: 
 Stephen Connolly Sai tharun nelaballi  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread adanec...@yahoo.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Anecito commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Sure. I will try it and let you know as soon as Jenkins makes it available.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41762) NodeJS plugin not updating PATH as expected

2017-02-07 Thread sg...@thetasgroup.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stefan Goor commented on  JENKINS-41762  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NodeJS plugin not updating PATH as expected   
 

  
 
 
 
 

 
 I can confirm that removing the Multijob and its dependent EnvInject plugin resolved the problem so it does appear to be a duplicate of JENKINS-27170. Thanks again.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41828) wget of large artifacts causes exception

2017-02-07 Thread apell...@cisco.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andre Pelletier updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41828  
 
 
  wget of large artifacts causes exception   
 

  
 
 
 
 

 
Change By: 
 Andre Pelletier  
 

  
 
 
 
 

 
 wget of large artifacts causes exception, at the same place in the file almost every time. 2017-02-07 16:52:22 (13.4 MB/s) - Connection closed at byte 1083797137. Retrying.2017-02-07 16:53:42 (13.2 MB/s) - Connection closed at byte 2167659556. Retrying. saved [2868445184/2868445184]The final image MD5 doesn't match the archived artifact fingerprint. {{ Caught exception evaluating: request.getSession() in /job/Development__build_and_test/237/artifact/foo/obj/foo.qcow2. Reason: java.lang.IllegalStateException: Response is committedjava.lang.IllegalStateException: Response is committed at org.eclipse.jetty.server.Request.getSession(Request.java:1400) at org.eclipse.jetty.server.Request.getSession(Request.java:1378) at javax.servlet.http.HttpServletRequestWrapper.getSession(HttpServletRequestWrapper.java:279) at sun.reflect.GeneratedMethodAccessor322.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.commons.jexl.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:258) at org.apache.commons.jexl.parser.ASTMethod.execute(ASTMethod.java:104) at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:83) at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:57) at org.apache.commons.jexl.parser.ASTReferenceExpression.value(ASTReferenceExpression.java:51) at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:80) at hudson.ExpressionFactory2$JexlExpression.evaluate(ExpressionFactory2.java:74) at org.apache.commons.jelly.tags.core.CoreTagLibrary$3.run(CoreTagLibrary.java:134) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:120) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.JellyViewScript.run(JellyViewScript.java:95) at org.kohsuke.stapler.jelly.DefaultScriptInvoker.invokeScript(DefaultScriptInvoker.java:63) at org.kohsuke.stapler.jelly.DefaultScriptInvoker.invokeScript(DefaultScriptInvoker.java:53) at org.kohsuke.stapler.jelly.JellyFacet$1.dispatch(JellyFacet.java:95) at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746) at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876) at org.kohsuke.stapler.Stapler.invoke(Stapler.java:649) at hudson.init.impl.InstallUncaughtExceptionHandler$1.reportException(InstallUncaughtExceptionHandler.java:30) at org.kohsuke.stapler.compression.CompressionFilter.reportException(CompressionFilter.java:77) at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:52) at org.eclipse.jetty.servle

[JIRA] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Code changed in jenkins User: restjohn Path: src/main/java/org/jenkinsci/plugins/androidsigning/SignApksBuilder.java http://jenkins-ci.org/commit/android-signing-plugin/df10f6e70ffd101a58ccbfc7580045219e5c5450 Log: should be a fix for a bug uncovered while testing JENKINS-41787, archiving the output apk(s)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41762) NodeJS plugin not updating PATH as expected

2017-02-07 Thread sg...@thetasgroup.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stefan Goor edited a comment on  JENKINS-41762  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NodeJS plugin not updating PATH as expected   
 

  
 
 
 
 

 
 Thanks for the response, Yes I have EnvInject installed as a dependency of the Multijob plugin but I think I can do things in a different way  so I don't need the multijob plugin  to get around the issue.  Thanks for your help.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41762) NodeJS plugin not updating PATH as expected

2017-02-07 Thread sg...@thetasgroup.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stefan Goor commented on  JENKINS-41762  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NodeJS plugin not updating PATH as expected   
 

  
 
 
 
 

 
 Thanks for the response, Yes I have EnvInject installed as a dependency of the Multijob plugin but I think I can do things in a different way to get around the issue.  Thanks for your help.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-29765) Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one

2017-02-07 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-29765  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one   
 

  
 
 
 
 

 
 

as evidenced by the pipeline "Replay" function
 It stores the revision in the job config, which results in side effects such as polling being stupidly broken: JENKINS-40722  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-29765) Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one

2017-02-07 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite commented on  JENKINS-29765  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one   
 

  
 
 
 
 

 
 I have no plans to implement any changes to support this in the git plugin or the git client plugin. I believe the necessary API calls are already available, as evidenced by the pipeline "Replay" function. The pipeline "Replay" uses the same commit in the new build as was used in the original build.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-39223) Java exception when changing project configuration

2017-02-07 Thread jeffdefond+jenk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeff DeFond commented on  JENKINS-39223  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Java exception when changing project configuration   
 

  
 
 
 
 

 
 Seeing this issue on Jenkins 2.32.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41776) Extra Column Plugin Not Pulling In Test Results for Cucumber Tests Run With Maven

2017-02-07 Thread fred...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 fredg02 commented on  JENKINS-41776  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Extra Column Plugin Not Pulling In Test Results for Cucumber Tests Run With Maven   
 

  
 
 
 
 

 
 Please provide more info: 
 
which version of Jenkins are you using? 
are you using any plugins related to Cucumber? 
is your project publicly available (e.g. on GitHub)? 
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41330) Extra VMs left running in Resource Group

2017-02-07 Thread clgui...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claudiu Guiman edited a comment on  JENKINS-41330  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Extra VMs left running in Resource Group   
 

  
 
 
 
 

 
 The fix will make sure there are no leaked deployments provisioned with Azure VM Agents 0.4.2+After you upgrade to the latest plugin (there's probably going to be a release next week) please make sure you don't have any older leaked resources  (new resource will have this tag key/value: JenkinsManagedTag:ManagedByAzureVMAgents) .   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41330) Extra VMs left running in Resource Group

2017-02-07 Thread clgui...@microsoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Claudiu Guiman commented on  JENKINS-41330  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Extra VMs left running in Resource Group   
 

  
 
 
 
 

 
 The fix will make sure there are no leaked deployments provisioned with Azure VM Agents 0.4.2+ After you upgrade to the latest plugin (there's probably going to be a release next week) please make sure you don't have any older leaked resources.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41330) Extra VMs left running in Resource Group

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41330  
 
 
  Extra VMs left running in Resource Group   
 

  
 
 
 
 

 
Change By: 
 SCM/JIRA link daemon  
 
 
Status: 
 In Progress Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41330) Extra VMs left running in Resource Group

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41330  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Extra VMs left running in Resource Group   
 

  
 
 
 
 

 
 Code changed in jenkins User: Claudiu Guiman Path: src/main/java/com/microsoft/azure/vmagent/AzureVMAgentCleanUpTask.java src/main/java/com/microsoft/azure/vmagent/AzureVMManagementServiceDelegate.java src/main/java/com/microsoft/azure/vmagent/util/AzureUtil.java src/main/java/com/microsoft/azure/vmagent/util/Constants.java src/main/resources/customImageTemplate.json src/main/resources/customImageTemplateWithScript.json src/main/resources/referenceImageTemplate.json src/main/resources/referenceImageTemplateWithScript.json src/test/java/com/microsoft/azure/vmagent/test/ITAzureVMAgentCleanUpTask.java src/test/java/com/microsoft/azure/vmagent/test/ITAzureVMManagementServiceDelegate.java src/test/java/com/microsoft/azure/vmagent/test/IntegrationTest.java src/test/java/com/microsoft/azure/vmagent/test/TestDeploymentTag.java http://jenkins-ci.org/commit/azure-vm-agents-plugin/2f70f8df6d40f3d400d4b560569982eb51e612a4 Log: Tag deployed resources and remove them if they leak [FIXED JENKINS-41330]  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread restj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Robert St. John edited a comment on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Thanks for the log, much appreciated.  I just released version 2.0.8  of the plugin  which should allow you to use {{ANDROID_HOME}} from the OS or the Jenkins system configuration.  I'd appreciate your feedback whenever you get a chance to try it.   Jenkins might take a little while before making it available in the update manager.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread restj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Robert St. John commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Thanks for the log, much appreciated. I just released version 2.0.8 which should allow you to use ANDROID_HOME from the OS or the Jenkins system configuration. I'd appreciate your feedback whenever you get a chance to try it.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41802) Inconsistent case for DisplayURLProvider.getTestUrl() method name

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41802  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Inconsistent case for DisplayURLProvider.getTestUrl() method name   
 

  
 
 
 
 

 
 Code changed in jenkins User: James Dumay Path: src/main/java/org/jenkinsci/plugins/displayurlapi/DisplayURLProvider.java http://jenkins-ci.org/commit/display-url-api-plugin/05bc69c518fda1f549c3ff92e865cb723bdf5b3a Log: JENKINS-41802 alias for getTestUrl/getTestURL  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41828) wget of large artifacts causes exception

2017-02-07 Thread apell...@cisco.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andre Pelletier created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41828  
 
 
  wget of large artifacts causes exception   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 core  
 
 
Created: 
 2017/Feb/07 10:21 PM  
 
 
Environment: 
 docker pull jenkins  docker run jenkins   Jenkins version 2.32.2   From the docker inspect digest:  sha256:2bfbdb2c2606a3fa036bd7c0392003cd5aeb45978cc7fa05ba14b0412b4e9a1c  JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64  JAVA_VERSION=8u121  
 
 
Labels: 
 exception docker  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Andre Pelletier  
 

  
 
 
 
 

 
 wget of large artifacts causes exception, at the same place in the file almost every time.  2017-02-07 16:52:22 (13.4 MB/s) - Connection closed at byte 1083797137. Retrying. 2017-02-07 16:53:42 (13.2 MB/s) - Connection closed at byte 2167659556. Retrying. saved [2868445184/2868445184] The final image MD5 doesn't match the archived artifact fingerprint. {{Caught exception evaluating: request.getSession() in /job/Development__build_and_test/237/artifact/foo/obj/foo.qcow2. Reason: java.lang.IllegalStateException: Response is committed java.lang.IllegalStateException: Response is committed at org.eclipse.jetty.server.Request.getSession(Request.java:1400) at org.eclipse.jetty.server.Request.getSession(Request.java:1378) at javax.servlet.http.HttpServletRequestWrapper.getSession(HttpServletRequestWrapper.java:279) at sun.reflect.GeneratedMethodAccessor322.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.commons.jexl.util.introsp

[JIRA] (JENKINS-41175) BlueOcean display URL is not working

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay edited a comment on  JENKINS-41175  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: BlueOcean display URL is not working   
 

  
 
 
 
 

 
 [~radinsky] you can use the following environment variables to get the display URL  https://issues . jenkins-ci.org/browse/  See JENKINS-41677 .  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41175) BlueOcean display URL is not working

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay edited a comment on  JENKINS-41175  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: BlueOcean display URL is not working   
 

  
 
 
 
 

 
 [~radinsky] you can use the following environment variables to get the display URL. See JENKINS-41677. RUN_DISPLAY_URL which links to the run resultRUN_CHANGES_DISPLAY_URL which links to the changes page for a runJOB_DISPLAY_URL links to the jobs homepage  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41769) Developer can see a user definable description for a pipeline run

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-41769  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Developer can see a user definable description for a pipeline run   
 

  
 
 
 
 

 
 OK I think we can do that.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41769) Developer can see a user definable description for a pipeline run

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41769  
 
 
  Developer can see a user definable description for a pipeline run   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 * Scope** {{currentBuild.description}} replaces the trigger reason on the Run screen and Message column on the activity** Overrides any other commit or trigger reason message* Escapes HTML but allows hrefs** HREF only displayed on the Run screen** All html including HREF excluded when shown elsewhere, such as the message column* Original request*In the old ui we are using the "currentBuild.description" to set version string and add a html link to the binary deployment. It is possible to display the description on each build also in the blue ocean ui?*Example Pipeline*{code}node {   sh 'ping -c 5 localhost'   currentBuild.description = "go to http://www.apple.com/";}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To

[JIRA] (JENKINS-41802) Inconsistent case for DisplayURLProvider.getTestUrl() method name

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41802  
 
 
  Inconsistent case for DisplayURLProvider.getTestUrl() method name   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 iapetus  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41802) Inconsistent case for DisplayURLProvider.getTestUrl() method name

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-41802  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Inconsistent case for DisplayURLProvider.getTestUrl() method name   
 

  
 
 
 
 

 
 Reinhold Füreder I've aliased it. It should be available in the next release.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41802) Inconsistent case for DisplayURLProvider.getTestUrl() method name

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated  JENKINS-41802  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41802  
 
 
  Inconsistent case for DisplayURLProvider.getTestUrl() method name   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41802) Inconsistent case for DisplayURLProvider.getTestUrl() method name

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay started work on  JENKINS-41802  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-29765) Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one

2017-02-07 Thread g.sta...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Grégory Starck commented on  JENKINS-29765  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Build Retry (both Naginator and Rebuild) pick the latest commit, not retrying one   
 

  
 
 
 
 

 
 Hi, I'm facing the same problem in a jenkins project building lots of git branches where we have quite often activity (pushes).. really often there are failed jobs that I want to retry but effectively it's always the last build that was run which is retried, and not the one on which I actually retry .. any high level idea when this feature/bugfix could be foreseen/released :-? Many thx.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41685) incorrect event received with workflow-api 2.8

2017-02-07 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort commented on  JENKINS-41685  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: incorrect event received with workflow-api 2.8   
 

  
 
 
 
 

 
 Yes, I've been working on this continuously. I've had to extend the test coverage somewhat to address this and some linked concerns, and am doing fixups for the issues encountered so you should get several fixes for the price of one.  Please kindly avoid double at-pings.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41685) incorrect event received with workflow-api 2.8

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay edited a comment on  JENKINS-41685  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: incorrect event received with workflow-api 2.8   
 

  
 
 
 
 

 
 [~jglick] [~svanoort] this regression is important as it breaks  The  the  visualization. Where is this at?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41685) incorrect event received with workflow-api 2.8

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-41685  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: incorrect event received with workflow-api 2.8   
 

  
 
 
 
 

 
 Jesse Glick Sam Van Oort this regression is important as it breaks The visualization. Where is this at?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41085  
 
 
  jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 

  
 
 
 
 

 
 Running command:  {{  java -jar jenkins-cli.jar -s IP quiet-down -block }} Does not seem to work for pipeline jobs. With pipeline job running the command returns straight away. The pipeline job then continues until the end of the stage then stops. I expected that the command should not return until all jobs in the queue are finished or reach the end of a stage and are paused.With freestyle job running the the command waits for the freestyle job to finish then returns.In both cases the command does stop new jobs from been started and shows a red banner with jenkins going for shutdown message on the web interface.Running:  {{  java -jar jenkins-cli.jar -s IP cancel-quiet-down }} Removes the red banner from the web UI but sometime the job in the queue does not restart and can't be canceled. I have to restart Jenkins. (Maybe this is a separate issue) Maybe text for jenkins-cli help quiet-down block option should be changed as this is what lead me to think the behavior was a bug From:{noformat}-block : Block until the system really quiets down and no builds arerunning{noformat}To:{noformat}-block : Block until the system really quiets down and no builds arerunning (except pipeline jobs){noformat}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 
   

[JIRA] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41085  
 
 
  jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 
 
Component/s: 
 pipeline  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread adanec...@yahoo.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Anecito commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Here is the console output. I do not know where to find the build logs. FATAL: Failed to create a directory at C:\Users\\.jenkins\jobs\Disaster Center\builds\11\archive\C:\Users\\.jenkins\workspace\Disaster Center\app\build\outputs\apk java.io.IOException: Failed to create a directory at C:\Users\\.jenkins\jobs\Disaster Center\builds\11\archive\C:\Users\.jenkins\workspace\Disaster Center\app\build\outputs\apk at hudson.util.IOUtils.mkdirs(IOUtils.java:66) at hudson.FilePath.mkdirsE(FilePath.java:2914) at hudson.FilePath.access$2000(FilePath.java:195) at hudson.FilePath$42$1.visit(FilePath.java:2133) at hudson.util.DirScanner.scanSingle(DirScanner.java:49) at hudson.FilePath$ExplicitlySpecifiedDirScanner.scan(FilePath.java:2804) at hudson.FilePath$42.invoke(FilePath.java:2128) at hudson.FilePath$42.invoke(FilePath.java:2121) at hudson.FilePath.act(FilePath.java:996) at hudson.FilePath.act(FilePath.java:974) at hudson.FilePath.copyRecursiveTo(FilePath.java:2121) at jenkins.model.StandardArtifactManager.archive(StandardArtifactManager.java:61) at org.jenkinsci.plugins.androidsigning.SignApksBuilder.perform(SignApksBuilder.java:194) at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:78) at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20) at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:779) at hudson.model.Build$BuildExecution.build(Build.java:205) at hudson.model.Build$BuildExecution.doRun(Build.java:162) at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:534) at hudson.model.Run.execute(Run.java:1728) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) at hudson.model.ResourceController.execute(ResourceController.java:98) at hudson.model.Executor.run(Executor.java:404) Archiving artifacts Finished: FAILURE  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

   

[JIRA] (JENKINS-41685) incorrect event received with workflow-api 2.8

2017-02-07 Thread vivek.pan...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Vivek Pandey commented on  JENKINS-41685  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: incorrect event received with workflow-api 2.8   
 

  
 
 
 
 

 
 Jesse Glick Looks like it.  Sam Van Oort is there fix in progress? This is messing up per node steps visualization in blueocean. A quick fix/release will be great. Also as part of the fix better to add/improve tests around ordering/events so that we can catch such regressions early. on.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41823) SMTP server showing unknown host name

2017-02-07 Thread saitharunred...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sai tharun nelaballi started work on  JENKINS-41823  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Sai tharun nelaballi  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread jhartley...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joe Hartley commented on  JENKINS-41085  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
 Maybe text for jenkins-cli help quiet-down block option should be changed as this is what lead me to think the behavior was a bug From: -block : Block until the system really quiets down and no builds are running To: -block : Block until the system really quiets down and no builds are running (except pipeline jobs)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread jhartley...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joe Hartley commented on  JENKINS-41085  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
 Ok, I think I understand: >From https://go.cloudbees.com/docs/cloudbees-documentation/cookbook/book.html "Restartable flows All Pipelines are resumable, so if Jenkins needs to be restarted while a flow is running, it should resume at the same point in its execution after Jenkins starts back up. Similarly, if a flow is running a lengthy sh or bat step when an agent unexpectedly disconnects, no progress should be lost when connectivity is restored." The original reason I raised this was to continue running some existing standalone build scripts that would wait for jenkins to quite-down before running then start jenkins up again when finished. I have got round blocking not behaving as I expected by using the lockable resource plugin and a dummy while(1) job that sets started/canceled by the external build scripts.  I'm planning some pipeline jobs that will call long running processes from bat. I guess I will have to live with losing some work or waiting if I need to restart.  Would it be possible to add a block step to pipeline, eg: block  { //while in block, block shutdown/restart } But I guess that should be a new feature request, and this bug should be closed as it is behaving as expected.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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, visi

[JIRA] (JENKINS-39301) During test executions optional transitive plugin dependencies don't get correctly loaded

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick resolved as Won't Do  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39301  
 
 
  During test executions optional transitive plugin dependencies don't get correctly loaded   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Reopened Resolved  
 
 
Resolution: 
 Won't Do  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-39301) During test executions optional transitive plugin dependencies don't get correctly loaded

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick closed an issue as Won't Do  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 See JENKINS-41827.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-39301  
 
 
  During test executions optional transitive plugin dependencies don't get correctly loaded   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Won't Do  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.goo

[JIRA] (JENKINS-39301) During test executions optional transitive plugin dependencies don't get correctly loaded

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39301  
 
 
  During test executions optional transitive plugin dependencies don't get correctly loaded   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Resolution: 
 Won't Do  
 
 
Status: 
 Closed Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41827) JenkinsRule mode to use realistic class loading

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41827  
 
 
  JenkinsRule mode to use realistic class loading   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Oliver Gondža  
 
 
Components: 
 jenkins-test-harness  
 
 
Created: 
 2017/Feb/07 8:32 PM  
 
 
Labels: 
 testing classloader  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 Jesse Glick  
 

  
 
 
 
 

 
 JenkinsRule-based tests generally load not only Jenkins core but also all plugins from ${java.class.path}, i.e., the Maven test-scoped classpath. This is convenient in some ways but also means that class loading is done in a very different way than in an actual production instance, or even mvn hpi:run, making it very hard to test changes like JENKINS-26192 without using the much clunkier, slower, and flakier acceptance-test-harness. It also means that we are forever fighting with Maven's weird transitive dependency management (JENKINS-41631, JENKINS-39301, etc.). There should be an option to run JenkinsRule in a mode whereby the test classpath is only used to load Jetty; Jenkins core and its WEB-INF/lib/*.jar (including modules!) is loaded in a derivative class loader; and then plugins are discovered from the test classpath, transitive dependencies computed and verified, and finally loaded in the real plugin class loader (probably using *.jpl files to allow us to still load from unpacked development trees). Finally, the test suite itself needs to be reloaded in a fresh loader parented to UberClassLoader, and executed from there. NbModuleSuite demonstrates the concept, though the details would be rather different for Jenkins. There are a lot of details to be checked, such as 
 
@TestExtension handling 
 

[JIRA] (JENKINS-40880) Optimisation - Do not return action proxies that are not exported beans

2017-02-07 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated  JENKINS-40880  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40880  
 
 
  Optimisation - Do not return action proxies that are not exported beans   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 In Review Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-14830) BZ 99064 - Intermediate directory is not deleted

2017-02-07 Thread a...@synopsys.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Cho assigned an issue to Andrew Cho  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-14830  
 
 
  BZ 99064 - Intermediate directory is not deleted   
 

  
 
 
 
 

 
Change By: 
 Andrew Cho  
 
 
Assignee: 
 Ken Dang Andrew Cho  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-40960) [DOCS] Clarify the way how to specify imagePullSecrets for podTemplate inside Jenkinsfile

2017-02-07 Thread jimbob...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Heggs commented on  JENKINS-40960  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: [DOCS] Clarify the way how to specify imagePullSecrets for podTemplate inside Jenkinsfile   
 

  
 
 
 
 

 
 Experiencing the same problem here with lack of docs here too. More than happy to submit PR once we know how. After much googling I found the following: https://medium.com/@iocanel/to-add-one-or-more-just-add-the-following-inside-the-podtemplate-5d9ddb93ad4e#.80lcrntn1 However after trying that it still didn't work.  Example I tried: 

 

podTemplate(label: 'build-slave', containers: [
containerTemplate(
name: 'build-slave', 
image: 'mydockerregistry/jenkins-build-slave:1.0.0', 
ttyEnabled: true, 
command: 'cat',
privileged: true,
alwaysPullImage: true,
workingDir: '/home/jenkins',
args: ''
  )
],
volumes: [
  hostPathVolume(mountPath: '/var/run/docker.sock', hostPath: '/var/run/docker.sock')
],
imagePullSecrets: ['acrregistrykey']
) 
{
  node ('build-slave') {
  stage('Echo') {
  sh("Echo done")
  }
  }
}
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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..

[JIRA] (JENKINS-36543) Boolean input parameter ignores default value of false

2017-02-07 Thread michael.dou...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Doubez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-36543  
 
 
  Boolean input parameter ignores default value of false   
 

  
 
 
 
 

 
Change By: 
 Michael Doubez  
 
 
Component/s: 
 pipeline-stage-view-plugin  
 
 
Component/s: 
 pipeline  
 
 
Labels: 
 parameter pipeline plugin user-experience  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-41085  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
 

non resumable parts, like bat
 https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Nodes+and+Processes+Plugin 

Pipeline steps locking agents and workspaces, and running external processes that may survive a Jenkins restart or slave reconnection.
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-33984) Git plugin sets wrong branch name GIT_BRANCH (more than 2 branches with same SHA1)

2017-02-07 Thread matthew.k.sm...@viasat.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Matthew Smith edited a comment on  JENKINS-33984  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Git plugin sets wrong branch name GIT_BRANCH (more than 2 branches with same SHA1)   
 

  
 
 
 
 

 
 +1 for this issue In my case, GIT_BRANCH is not even getting set to a branch name. It is getting set to the name of a _tag_ in the repo.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-39906) Fix PCT against core >= 2.16

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-39906  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Fix PCT against core >= 2.16   
 

  
 
 
 
 

 
 Fixed via JENKINS-41752, no?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41820) Builds are not triggered on hook notifications

2017-02-07 Thread stephen.alan.conno...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stephen Connolly commented on  JENKINS-41820  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Builds are not triggered on hook notifications   
 

  
 
 
 
 

 
 Please check the files $JENKINS_HOME/jenkins.branch.MultiBranchProject.log and $JENKINS_HOME/jenkins.branch.OrganizationFolder.log as they should provide a hint as to what is happening on the events  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-39906) Fix PCT against core >= 2.16

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-39906  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39906  
 
 
  Fix PCT against core >= 2.16   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In Review Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41752  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Fix PCT for 2.32.2   
 

  
 
 
 
 

 
 Code changed in jenkins User: Evaristo Gutiérrez Path: pom.xml http://jenkins-ci.org/commit/credentials-binding-plugin/3a3259d4a9326e82c31714773667872c2408c5c6 Log: JENKINS-41752 Remove wrong indentation.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41752  
 
 
  Fix PCT for 2.32.2   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Labels: 
 testing  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41752  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Fix PCT for 2.32.2   
 

  
 
 
 
 

 
 Code changed in jenkins User: Jesse Glick Path: pom.xml src/test/java/org/jenkinsci/plugins/credentialsbinding/impl/BindingStepTest.java http://jenkins-ci.org/commit/credentials-binding-plugin/252b1d5df61183ca1e6df127b103cdafad92388d Log: Merge pull request #33 from varyvol/JENKINS-41752 JENKINS-41752 Fix PCT for 2.32.2 Compare: https://github.com/jenkinsci/credentials-binding-plugin/compare/75925a888ba2...252b1d5df611  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41752  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Fix PCT for 2.32.2   
 

  
 
 
 
 

 
 Code changed in jenkins User: Evaristo Gutiérrez Path: pom.xml src/test/java/org/jenkinsci/plugins/credentialsbinding/impl/BindingStepTest.java http://jenkins-ci.org/commit/credentials-binding-plugin/962b5c869a215ef3c509ddad1beebddaae9b6b7a Log: JENKINS-41752 Force the user creation, as since Jenkins 2.32.2 it can depends on a new parameter. Update plugin dependencies for tests to start.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-41752  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41752  
 
 
  Fix PCT for 2.32.2   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In Review Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41752) Fix PCT for 2.32.2

2017-02-07 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-41752  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Fix PCT for 2.32.2   
 

  
 
 
 
 

 
 Code changed in jenkins User: Evaristo Gutiérrez Path: pom.xml http://jenkins-ci.org/commit/credentials-binding-plugin/d3313f65ef76194f416faff5385c1dcb03d93bb4 Log: JENKINS-41752 Request workflow-scm-step plugin instead of subversion dependency.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41085) jenkins-cli quiet-down -block does not block with pipeline jobs

2017-02-07 Thread jhartley...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joe Hartley commented on  JENKINS-41085  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: jenkins-cli quiet-down -block does not block with pipeline jobs   
 

  
 
 
 
 

 
 Should't it block a shutdown/restart until any non resumable parts, like bat, have finished?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41785) Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'

2017-02-07 Thread jad.cham...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jad Chamoun commented on  JENKINS-41785  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'   
 

  
 
 
 
 

 
 It's the same here, ever since updating to 2.12. Thank you Mark Waite for reporting it.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread restj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Robert St. John edited a comment on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Do you mind also posting your build log from when the archive artifacts failed?  I'd like to verify that's not another issue with the plugin.   You could also email it to me separately if you like.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread restj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Robert St. John commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Do you mind also posting your build log from when the archive artifacts failed? I'd like to verify that's not another issue with the plugin.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread restj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Robert St. John commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 No problem, I'm glad you got it working. I'll try to get a Windows test environment setup to avoid future Windows discrepancies. Hopefully I can a release done today to fix this issue.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41774) Pipeline executes "retry" when pipeline is aborted

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell closed an issue as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Fix is in review on JENKINS-41276  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41774  
 
 
  Pipeline executes "retry" when pipeline is aborted   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41785) Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell commented on  JENKINS-41785  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'   
 

  
 
 
 
 

 
 Thanks for the detailed steps to reproduce. Stephen Connolly, I think we need to prioritize this one.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41785) Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell assigned an issue to Stephen Connolly  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41785  
 
 
  Multi-branch pipeline status icon no longer shows worst status of jobs in that multi-branch 'folder'   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Assignee: 
 Stephen Connolly  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41800) BitBucket organization folder not displaying after SCM 2.0

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell commented on  JENKINS-41800  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: BitBucket organization folder not displaying after SCM 2.0   
 

  
 
 
 
 

 
 This should be fixed after you scan your repository. is it?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41805) Pipeline Job-- deletedir() delete only current directory but @script and @tmp dir still there in workspace.

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell closed an issue as Incomplete  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Please reopen with step by step instructions to reproduce the problem and clear description of what you expect to happen.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41805  
 
 
  Pipeline Job-- deletedir() delete only current directory but @script and @tmp dir still there in workspace.   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Incomplete  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving

[JIRA] (JENKINS-41807) 100% CPU load on 1 (of 8) core

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell closed an issue as Incomplete  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Please provide steps to reproduce the problem or at the very least a thread dump.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41807  
 
 
  100% CPU load on 1 (of 8) core   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Incomplete  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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://grou

[JIRA] (JENKINS-41813) bitbucket branch source folder no longer can have views

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell commented on  JENKINS-41813  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: bitbucket branch source folder no longer can have views   
 

  
 
 
 
 

 
 My understanding is that this "view" was an accidental feature and is not a supported use-case. Stephen Connolly, please confirm.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41813) bitbucket branch source folder no longer can have views

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell assigned an issue to Stephen Connolly  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41813  
 
 
  bitbucket branch source folder no longer can have views   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Assignee: 
 Antonio Muñiz Stephen Connolly  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41820) Builds are not triggered on hook notifications

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell commented on  JENKINS-41820  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Builds are not triggered on hook notifications   
 

  
 
 
 
 

 
 Please provide steps to reproduce. Can you check on the GitHub end to see if the hook is configured.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41820) Builds are not triggered on hook notifications

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell assigned an issue to Stephen Connolly  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41820  
 
 
  Builds are not triggered on hook notifications   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Assignee: 
 Stephen Connolly  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell commented on  JENKINS-41826  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
 Stephen Connolly, concerned we have regressed a bug fix for JENKINS-34692. Can you check?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell assigned an issue to Stephen Connolly  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41826  
 
 
  GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Assignee: 
 Matthew DeTullio Stephen Connolly  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41826  
 
 
  GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Component/s: 
 github-branch-source-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41826  
 
 
  GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Component/s: 
 github-organization-folder-plugin  
 
 
Component/s: 
 multi-branch-project-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread shawn....@c3iot.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 shawn sun updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41826  
 
 
  GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
Change By: 
 shawn sun  
 
 
Environment: 
 GitHub Organization Folder Plugin 1. 3 5  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41826) GitHub Organization Pull-Request URL is incorrect

2017-02-07 Thread shawn....@c3iot.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 shawn sun created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41826  
 
 
  GitHub Organization Pull-Request URL is incorrect   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Matthew DeTullio  
 
 
Components: 
 multi-branch-project-plugin  
 
 
Created: 
 2017/Feb/07 6:35 PM  
 
 
Environment: 
 GitHub Organization Folder Plugin 1.3  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 shawn sun  
 

  
 
 
 
 

 
 There was an original PR fixing JENKINS-34692, however the current version of github organization plug-in does not have this fix anymore. Go to a PR build, and click on Github link. In the case of a PR will point to: https://github.enterprise.com/support-team/private-repo/tree/PR-11 instead of: https://github.enterprise.com/support-team/private-repo/pull/11  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 

[JIRA] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread adanec...@yahoo.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Anecito commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Okay, the signing does not fail if I un-check the archive signed jars. You can close this issue and mention in a windows example the correct suffix for the zipalign.  Thanks for the quick replies!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41821) Launching openstack windows images from Jenkins gives error

2017-02-07 Thread ogon...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oliver Gondža commented on  JENKINS-41821  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Launching openstack windows images from Jenkins gives error   
 

  
 
 
 
 

 
 See the response message: "Flavor's disk is too small for requested image". Choose larger flavor for that image/snapshot.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41821) Launching openstack windows images from Jenkins gives error

2017-02-07 Thread ogon...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oliver Gondža updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41821  
 
 
  Launching openstack windows images from Jenkins gives error   
 

  
 
 
 
 

 
Change By: 
 Oliver Gondža  
 
 
Component/s: 
 openstack-heat-plugin  
 
 
Component/s: 
 windows-slaves-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41821) Launching openstack windows images from Jenkins gives error

2017-02-07 Thread ogon...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oliver Gondža resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41821  
 
 
  Launching openstack windows images from Jenkins gives error   
 

  
 
 
 
 

 
Change By: 
 Oliver Gondža  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread adanec...@yahoo.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Anecito commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Ok there is an checkbox for the plugin for archiving. I unselected that since I already have a post-build action to archive the apks and that does work. I am not sure why the plugin was not allowed to create a directory for archiving that is what the error was.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41821) Launching openstack windows images from Jenkins gives error

2017-02-07 Thread ogon...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Oliver Gondža updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41821  
 
 
  Launching openstack windows images from Jenkins gives error   
 

  
 
 
 
 

 
Change By: 
 Oliver Gondža  
 

  
 
 
 
 

 
 Hi,I have installed latest version of Jenkins on my windows machine and installed all openstack plugin in it and configured all openstack related information and I am able to see all the image template from Jenkins. And in task I have selected the particular template to launch an instance.But when I was trying to Launch a windows instance from Jenkins I am getting below error.Can you please let me know what exactly need to be done to fix this ? {noformat} Queuing cloud instance: #0 1, TP sysprep_bareos_win2012_v25ERROR: Exception creating a nodejenkins.plugins.openstack.compute.internal.Openstack$ActionFailed: Failed to boot server sysprep_bareos_win2012_v25-5677 in time: status=BUILD vmState=building fault=none at jenkins.plugins.openstack.compute.internal.Openstack.throwIfFailed(Openstack.java:410) at jenkins.plugins.openstack.compute.internal.Openstack.bootAndWaitActive(Openstack.java:238) at jenkins.plugins.openstack.compute.JCloudsSlaveTemplate.provision(JCloudsSlaveTemplate.java:266) at jenkins.plugins.openstack.compute.JCloudsBuildWrapper$ServerSupplier.get(JCloudsBuildWrapper.java:121) at jenkins.plugins.openstack.compute.JCloudsBuildWrapper$ServerSupplier.get(JCloudsBuildWrapper.java:110) at jenkins.plugins.openstack.compute.internal.RetrySupplierOnFailure.call(RetrySupplierOnFailure.java:28) at jenkins.plugins.openstack.compute.internal.RetrySupplierOnFailure.call(RetrySupplierOnFailure.java:12) at java.util.concurrent.FutureTask.run(Unknown Source) at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Suppressed: jenkins.plugins.openstack.compute.internal.Openstack$ActionFailed: Server deletion attempt failed:NovaServer{id=a7e16a70-ea4b-4130-84e5-0436b726ab42, name=sysprep_bareos_win2012_v25-5677, image={id=873971e7-5e47-4181-9dbf-b9466af9941b, links=[{href="" rel=bookmark}]}, flavor=NovaFlavor{id=c01ea1c1-5eb9-4be4-9ca6-79290356edc2, ephemeral=0, swap=0, rxtx_factor=1.0, is_public=true, links=[GenericLink{href="" rel=bookmark}], }, status=BUILD, diskconfig=AUTO, userId=193f6f86221b4d188e1b8501f8be7bb5, created=Tue Feb 07 08:28:12 MST 2017, updated=Tue Feb 07 08:40:24 MST 2017, tenantId=86d48817aea548b3a61f64367f2ee8ba, hostId=b22d345de27b4d3ca239097c9a812565791ce70e61336380a8009641, addresses=NovaAddresses{addresses={slcos01a-private=[NovaAddress{address=10.196.14.33, type=fixed, version=4, macaddr=fa:16:3e:bb:03:21, }]}, }, hypervisor host=slcan752.us.oracle.com, powerstate=0, instanceName=instance-827a, vmState=building, metadata={jenkins-template-name=sysprep_bareos_win2012_v25, jenkins-instance=http://10.240.188.129:8080/}}  at jenkins.plugins.openstack.compute.internal.Openstack.destroyServer(Opens

[JIRA] (JENKINS-41825) Page loads breaks when View.getItems fails

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41825  
 
 
  Page loads breaks when View.getItems fails   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Jesse Glick  
 
 
Components: 
 core  
 
 
Created: 
 2017/Feb/07 6:18 PM  
 
 
Labels: 
 lts-candidate robustness  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Jesse Glick  
 

  
 
 
 
 

 
 It is not uncommon for an error to be thrown from View.getItems. Currently Jenkins behaves poorly in this case: it displays an "oops" page with a cryptic stack trace 

 

java.lang.NullPointerException: Cannot invoke method isEmpty() on null object
at org.codehaus.groovy.runtime.NullObject.invokeMethod(NullObject.java:77)
at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.call(PogoMetaClassSite.java:45)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:42)
at org.codehaus.groovy.runtime.callsite.NullCallSite.call(NullCallSite.java:32)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:42)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:108)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:112)
at hudson.model.View.main.run(main.groovy:6)
 

 that has no relation to the real error.  
 

  
 
 
 
 
  

[JIRA] (JENKINS-39025) Pull request from forks are not build

2017-02-07 Thread elga...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Leo Gallucci commented on  JENKINS-39025  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Pull request from forks are not build   
 

  
 
 
 
 

 
 +1 , in the end I had to enable "send me everything" in the web hook.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41787) Android Signing plugin command not correct...

2017-02-07 Thread adanec...@yahoo.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Anecito commented on  JENKINS-41787  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Android Signing plugin command not correct...   
 

  
 
 
 
 

 
 Ok it was not an issue with the anti-virus and adding the .exe solved creating the signed apk but archiving failed but that is not an issue with the plugin I think.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41825) Page loads breaks when View.getItems fails

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-41825  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41825  
 
 
  Page loads breaks when View.getItems fails   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41783) Editor link in header is incorrectly placed in the new design

2017-02-07 Thread kzan...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Keith Zantow updated  JENKINS-41783  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41783  
 
 
  Editor link in header is incorrectly placed in the new design   
 

  
 
 
 
 

 
Change By: 
 Keith Zantow  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41783) Editor link in header is incorrectly placed in the new design

2017-02-07 Thread kzan...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Keith Zantow started work on  JENKINS-41783  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Keith Zantow  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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] (JENKINS-41825) Page loads breaks when View.getItems fails

2017-02-07 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick commented on  JENKINS-41825  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Page loads breaks when View.getItems fails   
 

  
 
 
 
 

 
 Linking to some examples of this, but from this search you can see there at least a dozen cases.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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   3   4   >