[JIRA] [performance-plugin] (JENKINS-22011) Performance plugin report not failing build based on relative thresholds.

2014-03-03 Thread john_natsiou...@yahoo.com.au (JIRA)














































John Nats
 created  JENKINS-22011


Performance plugin report not failing build based on relative thresholds.  















Issue Type:


Bug



Affects Versions:


current



Assignee:


Manuel Carrasco



Attachments:


plugin.docx



Components:


performance-plugin



Created:


03/Mar/14 8:00 AM



Description:


Running Junit sampler and configured to deliberate create a build failure (testing functionality). That is, set the "Use Relative thresholds for build comparison" to low values: 
Performance: Percentage of relative difference outside -0.02 to +0.02 % sets the build as failure
Performance: Percentage of relative difference outside -0.01 to +0.01 % sets the build as unstable

However, build is still marked as a SUCCESS when expecting it to be marked FAILED/UNSTABLE. 




Environment:


Win7; jdk1.7_051; Jmeter2.11




Project:


Jenkins



Labels:


plugin
performance




Priority:


Major



Reporter:


John Nats

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-22012) java.io.IOException: Failed to write timestamp when accessing REST API

2014-03-03 Thread jenk...@fnord.se (JIRA)














































Henrik Gustafsson
 created  JENKINS-22012


java.io.IOException: Failed to write timestamp when accessing REST API















Issue Type:


Bug



Assignee:


Nicolas De Loof



Components:


git



Created:


03/Mar/14 9:32 AM



Description:


For some builds, the REST API returns an exception when trying to access the build details. The error seems to be related to timestamp parsing/formatting, but I have not been able to find what is different between working builds and non-working builds.

Jenkins version 1.551
Git plugin 2.0.3
Git client plugin 1.6.3

One successful build (#41 for that job) contained this as its only change set:

$ git show --pretty=raw origin/master
commit f3a8d0dca13520cb85eef03293a0fd978bb27074
tree 815ff1f5ab3731ff175fa4d1f48681c4114a7542
parent 2d7dc47edb116e0616fc1ecd9764a49da03ac950
author Henrik Gustafsson henrik.gustafs...@proceranetworks.com 1393606544 +0100
committer Henrik Gustafsson henrik.gustafs...@proceranetworks.com 1393606581 +0100

PRIVATE: Exclude org.cojen.* from common test coverage

diff --git a/build.gradle b/build.gradle
index faa3ed8..814df08 100644
--- a/build.gradle
+++ b/build.gradle
@@ -72,6 +72,12 @@ project(':codemodel') {
 }
 
 project(':common') {
+test {
+jacoco {
+excludes  "org.cojen.*"
+}
+}
+
 dependencies {
 compile project(':runtime')
 compile project(':inetradix')



Accessing http://jenkins/job/XXX/41/api/json?pretty=true yields:

java.io.IOException: Failed to write timestamp
	at org.kohsuke.stapler.export.Property.writeTo(Property.java:120)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:187)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:182)
	at org.kohsuke.stapler.export.Property.writeValue(Property.java:232)
	at org.kohsuke.stapler.export.Property.writeValue(Property.java:169)
	at org.kohsuke.stapler.export.Property.writeValue(Property.java:137)
	at org.kohsuke.stapler.export.Property.writeTo(Property.java:114)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:187)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:182)
	at org.kohsuke.stapler.export.Property.writeValue(Property.java:232)
	at org.kohsuke.stapler.export.Property.writeValue(Property.java:137)
	at org.kohsuke.stapler.export.Property.writeTo(Property.java:114)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:187)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:182)
	at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:182)
	at org.kohsuke.stapler.export.Model.writeTo(Model.java:154)
	at org.kohsuke.stapler.ResponseImpl.serveExposedBean(ResponseImpl.java:267)
	at hudson.model.Api.doJson(Api.java:195)
	at sun.reflect.GeneratedMethodAccessor164.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.kohsuke.stapler.Function$InstanceFunction.invoke(Function.java:298)
	at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:161)
	at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:96)
	at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:120)
	at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.MetaClass$4.doDispatch(MetaClass.java:210)
	at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.MetaClass$12.dispatch(MetaClass.java:390)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
	at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at 

[JIRA] [git] (JENKINS-22012) java.io.IOException: Failed to write timestamp when accessing REST API

2014-03-03 Thread jenk...@fnord.se (JIRA)














































Henrik Gustafsson
 commented on  JENKINS-22012


java.io.IOException: Failed to write timestamp when accessing REST API















{{http://jenkins/job/XXX/41/api/json?pretty=truetree=changeSet[items*]}} gives the same error whereas the rest of the tree seems to work fine.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [m2release] (JENKINS-21849) Maven Release Plugin throws Authentication Required error

2014-03-03 Thread te...@java.net (JIRA)















































teilo
 resolved  JENKINS-21849 as Not A Defect


Maven Release Plugin throws Authentication Required error
















Please see the faq at https://wiki.jenkins-ci.org/display/JENKINS/M2+Release+Plugin

The use of this plugin requires that Maven can tag your code.  You may need to use cvs/svn etc from the CI account on the server that is performing the release so the native tools used by maven have the required authentication information.  (this is outside of Jenkins SCM authentication)
For help on how to configure this please use the Jenkins users mailing list 





Change By:


teilo
(03/Mar/14 9:43 AM)




Status:


InProgress
Resolved





Fix Version/s:


current





Resolution:


NotADefect



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [teamconcert] (JENKINS-22013) With Team concert plugin saving the configuration always gives error.

2014-03-03 Thread adityabhatia2...@gmail.com (JIRA)














































Aditya Bhatia
 created  JENKINS-22013


With Team concert plugin saving the configuration always gives error.















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


teamconcert



Created:


03/Mar/14 9:58 AM



Description:


When I am doing any configuration  saving I am getting the following exception:

javax.servlet.ServletException: java.lang.ArrayIndexOutOfBoundsException: Array index out of range: -1
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:778)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:631)
	at org.kohsuke.stapler.Stapler.service(Stapler.java:225)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
	at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1494)
	at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:96)
	at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:88)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
	at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
	at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:46)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1474)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:499)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
	at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:533)
	at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
	at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
	at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
	at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
	at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
	at org.eclipse.jetty.server.Server.handle(Server.java:370)
	at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)
	at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960)
	at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021)
	at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865)
	at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
	at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
	at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)
	at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
	at winstone.BoundedExecutorService$1.run(BoundedExecutorService.java:77)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
	at java.lang.Thread.run(Thread.java:736)
Caused by: java.lang.ArrayIndexOutOfBoundsException: Array index out of range: -1
	at com.thoughtworks.xstream.core.util.OrderRetainingMap.entrySet(OrderRetainingMap.java:77)
	at 

[JIRA] [core] (JENKINS-18615) Add option do disable fingerprinting for maven jobs

2014-03-03 Thread martin.nattr...@logicals.com (JIRA)














































Martin Nattrodt
 commented on  JENKINS-18615


Add option do disable fingerprinting for maven jobs















The fingerprints are calculated even if archiving is disabled. In this case fingerprints are just nonsense.

I would expect, that fingerprints are only calculated for archived files.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [notification] (JENKINS-22014) Notification hangs, does not time out

2014-03-03 Thread wannes.s...@gmail.com (JIRA)














































Wannes Sels
 created  JENKINS-22014


Notification hangs, does not time out















Issue Type:


Bug



Assignee:


Wannes Sels



Components:


notification



Created:


03/Mar/14 10:59 AM



Description:


When sending via TCP or HTTP, if Jenkins does not receive an RST (for example is destination is not up), the connect does not time out, and the build hangs.




Project:


Jenkins



Priority:


Major



Reporter:


Wannes Sels

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [jenkins-tracker] (JENKINS-19919) Starting slave as windows service fails on windows t 32bit

2014-03-03 Thread sreh...@broadcom.com (JIRA)















































Sajajd Rehman
 resolved  JENKINS-19919 as Wont Fix


Starting slave as windows service fails on windows t 32bit
















I don't think anyone is interested  in this issue..





Change By:


Sajajd Rehman
(03/Mar/14 11:07 AM)




Status:


Open
Resolved





Resolution:


WontFix



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [twitter] (JENKINS-22015) SSL conntection for auth needed

2014-03-03 Thread marcus.suemn...@uni-rostock.de (JIRA)














































Marcus Sümnick
 created  JENKINS-22015


SSL conntection for auth needed















Issue Type:


Bug



Affects Versions:


current



Assignee:


Kenichi Maehashi



Components:


twitter



Created:


03/Mar/14 11:19 AM



Description:


the oauth is not possible. the connection become rejected because no ssl-connection is used. for details see also: https://dev.twitter.com/docs/security/using-ssl




Project:


Jenkins



Priority:


Blocker



Reporter:


Marcus Sümnick

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git-client] (JENKINS-18951) Problems with too long paths

2014-03-03 Thread oliver.ha...@daimler.com (JIRA)














































O H
 commented on  JENKINS-18951


Problems with too long paths 















Could it be that this issue has been fixed in the meantime? I just "met" it again, updated the git and git client plugins and everything works fine again...



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git-client] (JENKINS-18951) Problems with too long paths

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)














































Mark Waite
 commented on  JENKINS-18951


Problems with too long paths 















I think that the git command line executable has the limitation, not the git-client-plugin.

You might try adding the JGit implementation to your Jenkins global configuration, then reconfigure the job to use JGit.  It is possible that JGit does not have the same problem as command line git.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-21954) Jenkins can not enter Job's api page with latest version 1.552

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)














































Mark Waite
 updated  JENKINS-21954


Jenkins can not enter Jobs api page with latest version 1.552
















Change By:


Mark Waite
(03/Mar/14 1:01 PM)




Component/s:


core



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-21954) Jenkins can not enter Job's api page with latest version 1.552

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)














































Mark Waite
 commented on  JENKINS-21954


Jenkins can not enter Jobs api page with latest version 1.552















The problem is fixed in the git-plugin source code and will be available in the next release after 2.0.3.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-22012) java.io.IOException: Failed to write timestamp when accessing REST API

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)















































Mark Waite
 resolved  JENKINS-22012 as Duplicate


java.io.IOException: Failed to write timestamp when accessing REST API
















Fixed in git-plugin source code, will be available in next release after 2.0.3.





Change By:


Mark Waite
(03/Mar/14 1:06 PM)




Status:


Open
Resolved





Resolution:


Duplicate



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [subversion] (JENKINS-18935) Make Subversion plugin support Subversion 1.8

2014-03-03 Thread thomas.ru...@steria-mummert.de (JIRA)














































Thomas Runge
 commented on  JENKINS-18935


Make Subversion plugin support Subversion 1.8















+1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [copyartifact] (JENKINS-22002) Copy Artifact doesn't support jobs in different Folders

2014-03-03 Thread kacynski.w...@aoins.com (JIRA)















































Walter Kacynski
 assigned  JENKINS-22002 to ikedam



Copy Artifact doesnt support jobs in different Folders
















I think I have all the information attached that you asked for.  The problem seems to occurs when we use a job build variable to find the source project to copy from.  If we use a hard-coded job path everything works fine.





Change By:


Walter Kacynski
(03/Mar/14 1:43 PM)




Assignee:


ikedam



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [copyartifact] (JENKINS-22002) Copy Artifact doesn't support jobs in different Folders

2014-03-03 Thread kacynski.w...@aoins.com (JIRA)














































Walter Kacynski
 updated  JENKINS-22002


Copy Artifact doesnt support jobs in different Folders
















Change By:


Walter Kacynski
(03/Mar/14 1:42 PM)




Attachment:


downstream-config.xml





Attachment:


OutputWithBuildVariable.png





Attachment:


OutputWithHardcodedJob.png





Attachment:


upstream-config.xml



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-20818) git plugin 2.0 started giving error to connect git over https

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)















































Mark Waite
 closed  JENKINS-20818 as Cannot Reproduce


git plugin 2.0 started giving error to connect git over https
















Change By:


Mark Waite
(03/Mar/14 1:58 PM)




Status:


Resolved
Closed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git] (JENKINS-20818) git plugin 2.0 started giving error to connect git over https

2014-03-03 Thread mark.earl.wa...@gmail.com (JIRA)















































Mark Waite
 resolved  JENKINS-20818 as Cannot Reproduce


git plugin 2.0 started giving error to connect git over https
















Based on no response from the submitter, and responses from others that these types of errors are significantly reduced in git-client-plugin 1.6.2 (and later) and git-plugin 2.0.1 (and later), I'm closing this as "cannot reproduce".





Change By:


Mark Waite
(03/Mar/14 1:58 PM)




Status:


Open
Resolved





Resolution:


CannotReproduce



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [dashboard-view] (JENKINS-22016) TAP test results of matrix configuration project do not show in main project overview and dashboard

2014-03-03 Thread kabelfrick...@gmail.com (JIRA)














































Stefan Nuernberger
 created  JENKINS-22016


TAP test results of matrix configuration project do not show in main project overview and dashboard















Issue Type:


Bug



Affects Versions:


current



Assignee:


Peter Hayes



Components:


dashboard-view, tap



Created:


03/Mar/14 2:01 PM



Description:


I use the TAP Plugin to publish test results of a matrix configuration project. To see the results I have to select the project, then a specific build with test results and there I can access the extended TAP information.

I can access basic test results through the "test results" link beneath the projects configuration matrix. But "TAP Extended Test Results" says "No TAP Results available, yet." This is only available when choosing a specific build.

What is worse, the dashboard view test statistics do not pick up the test results from the project. The number of tests run is shown correctly in the "Test Trend Chart", but "Test Statistics Chart" and "Test Statictics Grid" do not pick up any results (0 tests / no data available).

I believe the TAP Plugin does not correctly publish results to the master project but only to the single configurations? A similar issue is reported in JENKINS-12205, although it is about xunit and not TAP.

Please check the interaction of the TAP Plugin and matrix configuration projects.





Environment:


Debian Linux Wheezy

Jenkins 1.552

TAP Plugin 1.17

Dashboard View 2.9.2




Project:


Jenkins



Labels:


tap
tapResults
dashboard
matrix
testreport




Priority:


Major



Reporter:


Stefan Nuernberger

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-11989) Build history time line chart doesn't render in Internet Explorer 8.0.6001

2014-03-03 Thread monc...@raytheon.com (JIRA)














































Greg Moncreaff
 commented on  JENKINS-11989


Build history time line chart doesnt render in Internet Explorer 8.0.6001















Not a problem with IE 8.0.7601.17514 and Jenkins ver. 1.552



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [junit] (JENKINS-21347) Jenkins failes with Incorrect XML attributes for test results

2014-03-03 Thread toom...@java.net (JIRA)














































toomasr
 commented on  JENKINS-21347


Jenkins failes with Incorrect XML attributes for test results















Also experiencing this on Jenkins ver 1.532.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [teamconcert] (JENKINS-21933) PermGen leaks

2014-03-03 Thread docw...@gerf.org (JIRA)














































Christian Höltje
 commented on  JENKINS-21933


PermGen leaks















So I was wrong about using the IBM JRE  It eventually filled up the heap and started thrashing.  I didn't get OOM errors, but performance went into the toilet.   I had 2g of heap and it filled it up. 

I'll email the PHD to Heather directly.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [mailer] (JENKINS-19194) Recipients not being saved

2014-03-03 Thread abbybader+c...@gmail.com (JIRA)














































A Bader
 commented on  JENKINS-19194


Recipients not being saved















Any insight on the latter problem?  I'm fine using a free-style build job, but the email notification post-action is definitely not working.  Should I open a new issue?  Any output that I can capture that's useful to you?



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [mailer] (JENKINS-19194) Recipients not being saved

2014-03-03 Thread abbybader+c...@gmail.com (JIRA)














































A Bader
 commented on  JENKINS-19194


Recipients not being saved















Sure. It's not very interesting.   Pulling from {jenkins home}/jobs/{job}/{build}/log.  It's a test job that fails due to an "exit 1" in an ssh session, designed just to trigger a mail.

Started by user ...=anonymous
Building in workspace .../test email plugin/workspace
workspace $ /bin/sh -xe /tmp/hudson1200283283488152363.sh
+ exit 1
Build step 'Execute shell' marked build as failure
Sending e-mails to: m...@email.com
Finished: FAILURE

There aren't any stack traces in my system logs during the corresponding period.. no real mention of emails at all, in fact.

If you meant another log, please direct me.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [mailer] (JENKINS-19194) Recipients not being saved

2014-03-03 Thread slide.o....@gmail.com (JIRA)














































Alex Earl
 commented on  JENKINS-19194


Recipients not being saved















Did you try sending a test email in the global config area? Also, did you check your spam folder for the emails? If you have the ability, you can add a system property to the Jenkins command line to enable debug in JavaMail as well. 

-Dmail.debug=true



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [git-client] (JENKINS-22017) Git client: NoClassDefFoundError

2014-03-03 Thread martijn.po...@ga.amgate.com (JIRA)














































Martijn Polak
 created  JENKINS-22017


Git client: NoClassDefFoundError















Issue Type:


Bug



Affects Versions:


current



Assignee:


Nicolas De Loof



Components:


git-client



Created:


03/Mar/14 4:49 PM



Description:


I have a similar issue as JENKINS-21745: whenever I type anything in the Git repository URL in the configuration page I get a NoClassDefFoundError (see top of dump below).

Contrary to the other issue I do have the Credentials plugin enabled and up to date. Here are my versions:

Jenkins: 1.553
GIT client plugin: 1.6.3
Git plugin: 2.0.3
Credentials plugin: 1.10

I've tried enabling and disabling other plugins, restarting, downgrading, upgrading and reinstalling the plugins but to no avail. I have no idea how to get this to work.

Top of dump as follows:

javax.servlet.ServletException: java.lang.NoClassDefFoundError: org.jenkinsci.plugins.gitclient.GitClient
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:778)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
	at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
	at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:728)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:858)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:631)
	at org.kohsuke.stapler.Stapler.service(Stapler.java:225)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
	at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1494)
	at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:96)
	at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:88)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
	at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
	at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:46)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1482)
	at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1474)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:499)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
	at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:533)
	at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
	at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
	at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
	at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
	at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
	at org.eclipse.jetty.server.Server.handle(Server.java:370)
	at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)
	at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:949)
	at 

[JIRA] [slave-status] (JENKINS-21920) Can't take node offline

2014-03-03 Thread arse...@front.ru (JIRA)














































Arseniy Arseniy
 commented on  JENKINS-21920


Cant take node offline















Yes, the same. Jenkins ver. 1.553



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [tasks-plugin] (JENKINS-17225) Allow regular expressions as tags

2014-03-03 Thread ullrich.haf...@gmail.com (JIRA)















































Ulli Hafner
 assigned  JENKINS-17225 to Ulli Hafner



Allow regular expressions as tags
















Change By:


Ulli Hafner
(03/Mar/14 5:04 PM)




Assignee:


FelixDuerrwanger
UlliHafner



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [warnings] (JENKINS-17787) Replace Codenarc parser with native parser

2014-03-03 Thread ullrich.haf...@gmail.com (JIRA)















































Ulli Hafner
 assigned  JENKINS-17787 to Ulli Hafner



Replace Codenarc parser with native parser
















Change By:


Ulli Hafner
(03/Mar/14 5:05 PM)




Assignee:


FelixDuerrwanger
UlliHafner



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [mailer] (JENKINS-19194) Recipients not being saved

2014-03-03 Thread abbybader+c...@gmail.com (JIRA)














































A Bader
 commented on  JENKINS-19194


Recipients not being saved















I did try a test email; it claims to have completed correctly, but no emails get delivered to any address I've tried (not even to the spam box). Again, no errors on the system logs.

Re: running from CLI, I've emailed you directly, will post again if I find an answer. Thanks.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [jobconfighistory] (JENKINS-14295) WARNING: Called getInputStream after getParameter ... error

2014-03-03 Thread kacynski.w...@aoins.com (JIRA)














































Walter Kacynski
 reopened  JENKINS-14295


WARNING: Called getInputStream after getParameter ... error
















Change By:


Walter Kacynski
(03/Mar/14 5:45 PM)




Resolution:


Incomplete





Status:


Closed
Reopened



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-14295) WARNING: Called getInputStream after getParameter ... error

2014-03-03 Thread kacynski.w...@aoins.com (JIRA)














































Walter Kacynski
 updated  JENKINS-14295


WARNING: Called getInputStream after getParameter ... error
















I see these messages associated with the following:
Mar 03, 2014 12:40:43 PM winstone.Logger logInternal
WARNING: Called getInputStream after getParameter ... error

Maybe this is released to the winstone servlet engine?





Change By:


Walter Kacynski
(03/Mar/14 5:46 PM)




Assignee:


WalterKacynski





Component/s:


core





Component/s:


jobconfighistory



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [rtc] (JENKINS-21964) Build definition and workspace name should accept parameters and/or environment variables.

2014-03-03 Thread griffman...@gmail.com (JIRA)














































James Griffin
 commented on  JENKINS-21964


Build definition and workspace name should accept parameters and/or environment variables.















we are using the build definition and jenkins integration in RTC. we have multiple streams which need to have separate build definitions for each stream. what I am asking is for the build definition field in jenkins to handle parameters so we can use the same jenkins project and choose the stream/build definition on the same project. otherwise we need separate projects for each build definition. 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-21999) Computer does not exist returns NPE

2014-03-03 Thread dan...@beckweb.net (JIRA)














































Daniel Beck
 commented on  JENKINS-21999


Computer does not exist returns NPE















What are the circumstances for this to happen?



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-12569) Jenkins swap monitoring is running although swap monitoring is disbaled for all the nodes

2014-03-03 Thread caleb.t...@gmail.com (JIRA)














































Caleb Tote
 commented on  JENKINS-12569


Jenkins swap monitoring is running although swap monitoring is disbaled for all the nodes















We too are seeing this issue; as well as the issue referenced by Pavel.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-17051) Inconsistent latest build

2014-03-03 Thread ever...@free.fr (JIRA)














































evernat
 commented on  JENKINS-17051


Inconsistent latest build















Is it reproduced with a recent Jenkins version?



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-17044) all master executors died

2014-03-03 Thread ever...@free.fr (JIRA)














































evernat
 commented on  JENKINS-17044


all master executors died















Is it reproduced with a recent Jenkins version?



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [s3] (JENKINS-19725) Unable to unmarshall response (Couldn't initialize a SAX driver to create an XMLReader)

2014-03-03 Thread tswee...@omnifone.com (JIRA)














































Tony Sweeney
 commented on  JENKINS-19725


Unable to unmarshall response (Couldnt initialize a SAX driver to create an XMLReader)















Also an issue for us with Jenkins 1.543 and Jekins S3 plugin version 0.5; seems to be a regression, as we definitely had this working before the last upgrade.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [s3] (JENKINS-19725) Unable to unmarshall response (Couldn't initialize a SAX driver to create an XMLReader)

2014-03-03 Thread tswee...@omnifone.com (JIRA)












































 
Tony Sweeney
 edited a comment on  JENKINS-19725


Unable to unmarshall response (Couldnt initialize a SAX driver to create an XMLReader)
















Also an issue for us with Jenkins 1.543 and Jenkins S3 plugin version 0.5; seems to be a regression, as we definitely had this working before the last upgrade.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [jacoco] (JENKINS-22018) Support for ratcheting of minimum thresholds in Jacoco coverage

2014-03-03 Thread chris.a.willi...@gmail.com (JIRA)














































Chris Williams
 created  JENKINS-22018


Support for ratcheting of minimum thresholds in Jacoco coverage















Issue Type:


New Feature



Assignee:


Ognjen Bubalo



Components:


jacoco



Created:


03/Mar/14 6:52 PM



Description:


The addition of an option to "ratchet" or update the minimum thresholds for build failure would be very useful. This request is inspired by and heavily related to JENKINS-8326 for the Cobertura coverage plugin.

Ideally we'd be able to set the publisher to automatically update the minimum thresholds to higher values when a project's observed value is higher than a previously set minimum. This enables a project to help enforce that code coverage cannot decrease over time as a code quality standard.




Project:


Jenkins



Priority:


Major



Reporter:


Chris Williams

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [s3] (JENKINS-19725) Unable to unmarshall response (Couldn't initialize a SAX driver to create an XMLReader)

2014-03-03 Thread tswee...@omnifone.com (JIRA)












































 
Tony Sweeney
 edited a comment on  JENKINS-19725


Unable to unmarshall response (Couldnt initialize a SAX driver to create an XMLReader)
















Also an issue for us with Jenkins 1.543 and Jenkins S3 plugin version 0.5; seems to be a regression, as we definitely had this working before the last upgrade.  Previous version was 1.521 and Jenkins S3 0.4; Not 100% this was working with that combo, I just know that it worked in the past.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-17044) all master executors died

2014-03-03 Thread rsi...@gracenote.com (JIRA)














































robsimon
 commented on  JENKINS-17044


all master executors died















haven't seen it for a while. what i noticed with 1.552 is that when an executor dies that shortly after this executor seems to recover. but i had no time to look into the logs to see what happened at this point in time.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [jacoco] (JENKINS-22018) Support for ratcheting of minimum thresholds in Jacoco coverage

2014-03-03 Thread chris.a.willi...@gmail.com (JIRA)














































Chris Williams
 commented on  JENKINS-22018


Support for ratcheting of minimum thresholds in Jacoco coverage















Because I've had to work around this myself in the meantime, I use the following groovy postbuild script to achieve this:

Unable to find source-code formatter for language: groovy. Available languages are: _javascript_, sql, xhtml, actionscript, none, html, xml, java// Grab the API for Jacoco
def b = manager.build;

def action = "" { it.getUrlName() == "jacoco" }
if (action == null) {
	// no Jacoco coverage, so nothing to do!
	manager.listener.logger.println "Unable to get Jacoco Build Action on build, so bailing out"
	return;
}

def publishers = b.getProject().publishersList;
def jacocoPublisher = publishers.find { it.getDescriptor().getId() == "hudson.plugins.jacoco.JacocoPublisher" }

// Collect the current "observed" values for coverage
def line = action.getLineCoverage();
def clazz = action.getClassCoverage();
def method = action.getMethodCoverage();
def instruction = action.getInstructionCoverage();
def branch = action.getBranchCoverage();
//def complexity = action.getComplexityScore();

// Now let's set the new threshold minimums to last value!
// Only set these values if the observed percent is _higher_ than the existing minimum threshold!
def thresholds = action.getThresholds();

// Classes
int percent = clazz.getPercentage();
manager.listener.logger.println "Observed class coverage: ${percent}%"
if (percent  thresholds.getMinClass()) {
	manager.listener.logger.println "Increasing minimum threshold to observed value for class coverage"
	thresholds.setMinClass(percent);
}
// methods
percent = method.getPercentage();
manager.listener.logger.println "Observed methods coverage: ${percent}%"
if (percent  thresholds.getMinMethod()) {
	manager.listener.logger.println "Increasing minimum threshold to observed value for methods coverage"
	thresholds.setMinMethod(percent);
}
// Branches
percent = branch.getPercentage();
manager.listener.logger.println "Observed branches coverage: ${percent}%"
if (percent  thresholds.getMinBranch()) {
	manager.listener.logger.println "Increasing minimum threshold to observed value for branches coverage"
	thresholds.setMinBranch(percent);
}
// Lines
percent = line.getPercentage();
manager.listener.logger.println "Observed lines coverage: ${percent}%"
if (percent  thresholds.getMinLine()) {
	manager.listener.logger.println "Increasing minimum threshold to observed value for lines coverage"
	thresholds.setMinLine(percent);
}
// Instructions
percent = instruction.getPercentage();
manager.listener.logger.println "Observed instruction coverage: ${percent}%"
if (percent  thresholds.getMinInstruction()) {
	manager.listener.logger.println "Increasing minimum threshold to observed value for instruction coverage"
	thresholds.setMinInstruction(percent);
}
// Complexity
//percent = complexity.getPercentage();
//if (percent  thresholds.getMinComplexity()) {
//	thresholds.setMinComplexity(percent);
//}

// We need to replace the publisher with a new instance that has updated minimums
// HACK to work around bug in plugin where we don't have access to plugin classes.
def c = Class.forName("hudson.plugins.jacoco.JacocoPublisher", true, manager.hudson.getPluginManager().uberClassLoader)
def constructor = c.getConstructor( [ String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, boolean ] as Class[] )
// make a new version of the coverage publisher with updated minimums
def newPub = constructor.newInstance(jacocoPublisher.getExecPattern(), jacocoPublisher.getClassPattern(), jacocoPublisher.getSourcePattern(),
 jacocoPublisher.getInclusionPattern(), jacocoPublisher.getExclusionPattern(), jacocoPublisher.getMaximumInstructionCoverage(),
 jacocoPublisher.getMaximumBranchCoverage(), jacocoPublisher.getMaximumComplexityCoverage(), jacocoPublisher.getMaximumLineCoverage(),
 jacocoPublisher.getMaximumMethodCoverage(), jacocoPublisher.getMaximumClassCoverage(), Integer.toString(thresholds.getMinInstruction()), Integer.toString(thresholds.getMinBranch()),
 Integer.toString(thresholds.getMinComplexity()), Integer.toString(thresholds.getMinLine()), Integer.toString(thresholds.getMinMethod()), Integer.toString(thresholds.getMinClass()),
 jacocoPublisher.isChangeBuildStatus())
// Now remove the old version and replace with the new publisher with updated minimums
publishers.replace(jacocoPublisher, newPub); // remove old 

[JIRA] [slave-status] (JENKINS-22019) Builders with full disks not being pulled out of rotation

2014-03-03 Thread jos...@azariah.com (JIRA)














































Joshua Kugler
 created  JENKINS-22019


Builders with full disks not being pulled out of rotation















Issue Type:


Bug



Assignee:


Unassigned


Components:


slave-status



Created:


03/Mar/14 7:35 PM



Description:


We recently had a builder fill its disk due to a large build. However, Jenkins did not pull it out of rotation, and it subsequently caused build after build to fail due to the full disk.

Is this expected? I have seen Jenkins pull other builders due to full disks before, and could not find an option to disable or enable this behavior.




Project:


Jenkins



Priority:


Minor



Reporter:


Joshua Kugler

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [job-dsl-plugin] (JENKINS-22020) Different Maven Installations are not supported

2014-03-03 Thread jenk...@soebes.de (JIRA)














































Karl-Heinz Marbaise
 created  JENKINS-22020


Different Maven Installations are not supported















Issue Type:


Improvement



Affects Versions:


current



Assignee:


Justin Ryan



Components:


job-dsl-plugin



Created:


03/Mar/14 7:39 PM



Description:


Currently the job dsl supports the following:

job {
  name '...'

  steps {
maven {
  goals("-B clean package")
  ...
}
  }
}


But it would be nice having support for different maven installation like this:


job {
  name '...'

  steps {

maven {
  mavenName("Maven 2.0.11")
  goals("-B clean package")
}
maven {
  mavenName("Maven 3.0.5")
  goals("-B clean package")
}
...
  }
}

But currently the code has hard coded the maveName with "default" which prevents any job configuration like the above.




Project:


Jenkins



Priority:


Major



Reporter:


Karl-Heinz Marbaise

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-11989) Build history time line chart doesn't render in Internet Explorer 8.0.6001

2014-03-03 Thread ever...@free.fr (JIRA)















































evernat
 resolved  JENKINS-11989 as Cannot Reproduce


Build history time line chart doesnt render in Internet Explorer 8.0.6001
















thanks, resolving as can not reproduced.





Change By:


evernat
(03/Mar/14 8:04 PM)




Status:


Open
Resolved





Resolution:


CannotReproduce



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [appaloosa] (JENKINS-22021) Make workspace archive validation at end of job optional.

2014-03-03 Thread msla...@gmail.com (JIRA)














































Mike Slaven
 created  JENKINS-22021


Make workspace archive validation at end of job optional.















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


appaloosa



Created:


03/Mar/14 8:31 PM



Description:


When a job is finished, the appaloosa plugin checks to ensure a .ipa/.apk file exists in the folders you indicated in your post-build step.

This is fine, except when you use a promotion plugin so that the promotion happens in it's own pre-built environment.

Please make this check optional at the end of the job.




Environment:


OSX 10.9.1




Project:


Jenkins



Priority:


Major



Reporter:


Mike Slaven

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [appaloosa] (JENKINS-22023) Allow builds with the same version number to be uploaded (perhaps a server side option per app)

2014-03-03 Thread msla...@gmail.com (JIRA)














































Mike Slaven
 created  JENKINS-22023


Allow builds with the same version number to be uploaded (perhaps a server side option per app)















Issue Type:


Bug



Assignee:


Unassigned


Components:


appaloosa



Created:


03/Mar/14 8:38 PM



Description:


Allow a build with the same version number to be uploaded on top of itself, replacing the current version. This would be very handy when other identifiers are used to identify the codebase an installer came from (a perforce changelist number for example)




Environment:


OSX 10.9.1




Project:


Jenkins



Priority:


Major



Reporter:


Mike Slaven

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-21989) ReverseProxySetupMonitor broken in Jenkins release 1.552

2014-03-03 Thread jenkins-ci....@michael-prokop.at (JIRA)














































Michael Prokop
 commented on  JENKINS-21989


ReverseProxySetupMonitor broken in Jenkins release 1.552















Same here with Jenkins 1.552 and 1.553 + nginx, seems to be related to https://github.com/jenkinsci/jenkins/commit/724f9e0dfc2011d4c12e867bd85bc3f32c2b0513



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-22024) Windows services shows Jenkins as not running.. but it is.

2014-03-03 Thread mlandma...@gmail.com (JIRA)














































boris ivan
 created  JENKINS-22024


Windows services shows Jenkins as not running.. but it is.















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


core



Created:


03/Mar/14 8:47 PM



Description:


My Jenkins webserver is running on a Windows 2012 VM. It's been working fine and is still running fine after upgrading from 1.552 to 1.553. But after upgrading to 1.553, the 'services' tool in Windows tells me that Jenkins is not running. But it is running  it's running fine. I can refresh webpages, launch jobs, etc, from web browsers.

But for the "Jenkins" service, the status is blank, where normally it would say: "running". I've closed the tool and relaunched it, hit F5 to refresh, etc. Jenkins is working fine, but the service tool from Microsoft doesn't say it's running.

This worked in 1.552.




Environment:


Windows 2012, Jenkins 1.553, Java 1.7.0-45




Project:


Jenkins



Priority:


Major



Reporter:


boris ivan

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [job-dsl-plugin] (JENKINS-22020) Different Maven Installations are not supported

2014-03-03 Thread m...@daniel-spilker.com (JIRA)















































Daniel Spilker
 resolved  JENKINS-22020 as Fixed


Different Maven Installations are not supported
















This has been released with version 1.20. The option is called mavenInstallation. See https://github.com/jenkinsci/job-dsl-plugin/wiki/Job-reference#wiki-maven-1 for details.





Change By:


Daniel Spilker
(03/Mar/14 9:15 PM)




Status:


Open
Resolved





Assignee:


JustinRyan
DanielSpilker





Resolution:


Fixed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [vsphere-cloud] (JENKINS-22025) VM cannot be started repeatedly with vSphere plugin

2014-03-03 Thread bhave...@gmail.com (JIRA)














































Bryan Havenstein
 created  JENKINS-22025


VM cannot be started repeatedly with vSphere plugin















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


vsphere-cloud



Created:


03/Mar/14 9:29 PM



Description:


I've been using the vSphere plugin for 6 months or so successfully.

A couple of weeks ago, it started failing builds with "VM cannot be started" errors.  It seems to happen about 50% of the time and could fail twice and then work fine a couple of minutes later.

Procedure for this particular job is to revert the VM to snapshot, then power off, then power on.

The ESXI host shows no issues.  The event log shows the VM being started fine and it comes up working fine despite Jenkins declaring it failed.

Timeout is set to 600 sec, but the failures happen after ~1.5 min.  A normal run takes about 2.5 min for the IP to become available, so the fail is triggered before the IP would normally be there.

Is there any debug log I could look into or is this a known issue?


Log:

vSphere 
vSphere Performing vSphere build step: "Power-On/Resume VM"
vSphere Attempting to use server configuration: "sandbox"
vSphere Waiting for IP (VM may be restarted during this time)
vSphere vSphere Error: VM cannot be started
Build step 'vSphere Build Step' marked build as failure
Email was triggered for: Failure




Environment:


Jenkins master on RedHat

vSphere plugin used w/ ESXI host




Project:


Jenkins



Priority:


Major



Reporter:


Bryan Havenstein

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [job-dsl-plugin] (JENKINS-22020) Different Maven Installations are not supported

2014-03-03 Thread jenk...@soebes.de (JIRA)














































Karl-Heinz Marbaise
 commented on  JENKINS-22020


Different Maven Installations are not supported















Hi Daniel, may be i misunderstand a thingif i do the job creationg like this:

job {
name 'DSL-maven-job'
jdk("JDK-1.7-u40")
scm {
git('g...@github.com:khmarbaise/artifactor-maven-plugin.git')
}
triggers {
scm('H/15 * * * *')
}
  steps {
maven {
mavenInstallation("Maven 3.0.5")
goals("-B -Prun-its clean verify")
localRepository(LocalToWorkspace)
}
maven {
mavenInstallation("Maven 3.1.1")
goals("-B -Prun-its clean verify")
localRepository(LocalToWorkspace)
}
  }
}

it works as expected but if i change the code to the following:

def existingMavenInstallations = [ "Maven 3.0.5", "Maven 3.1.1" ]
job {
name 'DSL-maven-job'
jdk("JDK-1.7-u40")
scm {
git('g...@github.com:khmarbaise/artifactor-maven-plugin.git')
}
triggers {
scm('H/15 * * * *')
}
steps {
  existingMavenInstallations.each {
  maven {
  mavenInstallation(it)
  goals("-B -Prun-its clean verify")
  localRepository(LocalToWorkspace)
 }
  }
}
}

it might be a Groovy problem on my site ?



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-21605) Logging all UpstreamCause's floods Jenkins in large setups

2014-03-03 Thread dtho...@willowgarage.com (JIRA)














































Dirk Thomas
 updated  JENKINS-21605


Logging all UpstreamCauses floods Jenkins in large setups
















Change By:


Dirk Thomas
(03/Mar/14 10:08 PM)




URL:


http://jenkins.ros.org/job/ros-hydro-
metapackages_binarydeb_raring_i386
metapackages_binarydeb_precise_amd64
/
702
813
/
console



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-21605) Logging all UpstreamCause's floods Jenkins in large setups

2014-03-03 Thread dtho...@willowgarage.com (JIRA)














































Dirk Thomas
 commented on  JENKINS-21605


Logging all UpstreamCauses floods Jenkins in large setups















Is there any chance this critical regression will be addressed? This makes Jenkins basically unusable in large setups. And going back to a one year old release where the problem was addressed is not really an option with the latest security fixes.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-failure-analyzer] (JENKINS-22026) Propagate failure causes from downstream builds

2014-03-03 Thread aba...@java.net (JIRA)














































abayer
 created  JENKINS-22026


Propagate failure causes from downstream builds















Issue Type:


Improvement



Assignee:


Tomas Westling



Components:


build-failure-analyzer



Created:


03/Mar/14 10:45 PM



Description:


This would be nice to have - I've got a fairly complex multi-level build setup, with a group of "generic" jobs for each platform we build on. Those generic jobs are then called by each of our 20+ component builds, passing certain information (i.e., what to build, where to find source packages) to the generic jobs as parameters.

When the generic jobs (i.e., the downstream builds) fail, they get the appropriate known cause associated with them, but the parent build doesn't, since it doesn't actually have the cause of the downstream failure in its log. It'd be handy if we could propagate failure causes up the stack from the downstream builds to their upstream builds - it'd make analysis much simpler.




Project:


Jenkins



Priority:


Major



Reporter:


abayer

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)














































SCM/JIRA link daemon
 commented on  JENKINS-21919


Extension point to define timeout action















Code changed in jenkins
User: ikedam
Path:
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/config.jelly
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help_ja.html
http://jenkins-ci.org/commit/build-timeout-plugin/dd5967987f57229afe1d870e4651f0464bae7a6a
Log:
  JENKINS-21919 Some fixes for views: changed the entry order from actions, strategy to strategy, actions/open a new window for the link to the build configuration page.





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)














































SCM/JIRA link daemon
 commented on  JENKINS-21919


Extension point to define timeout action















Code changed in jenkins
User: ikedam
Path:
 src/main/java/hudson/plugins/build_timeout/BuildTimeOutOperation.java
 src/main/java/hudson/plugins/build_timeout/BuildTimeOutOperationDescriptor.java
 src/main/java/hudson/plugins/build_timeout/BuildTimeoutWrapper.java
 src/main/java/hudson/plugins/build_timeout/operations/AbortOperation.java
 src/main/java/hudson/plugins/build_timeout/operations/FailOperation.java
 src/main/java/hudson/plugins/build_timeout/operations/WriteDescriptionOperation.java
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/config.jelly
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/config_ja.properties
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-failBuild.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-failBuild_ja.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-operationList.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-operationList_ja.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-writingDescription.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-writingDescription_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/AbortOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/AbortOperation/help_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/FailOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/FailOperation/help_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/Messages.properties
 src/main/resources/hudson/plugins/build_timeout/operations/Messages_ja.properties
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/config.jelly
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/config_ja.properties
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help-description.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help-description_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help_ja.html
http://jenkins-ci.org/commit/build-timeout-plugin/915c8bf0b2e1b27c483f7afdcd70dd16ebf856d1
Log:
  FIXED JENKINS-21919 Generalize actions performed in timeout with an extension point.





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)














































SCM/JIRA link daemon
 commented on  JENKINS-21919


Extension point to define timeout action















Code changed in jenkins
User: ikedam
Path:
 src/main/java/hudson/plugins/build_timeout/BuildTimeOutOperation.java
 src/main/java/hudson/plugins/build_timeout/BuildTimeOutOperationDescriptor.java
 src/main/java/hudson/plugins/build_timeout/BuildTimeoutWrapper.java
 src/main/java/hudson/plugins/build_timeout/operations/AbortOperation.java
 src/main/java/hudson/plugins/build_timeout/operations/FailOperation.java
 src/main/java/hudson/plugins/build_timeout/operations/WriteDescriptionOperation.java
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/config.jelly
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/config_ja.properties
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-failBuild.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-failBuild_ja.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-operationList.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-operationList_ja.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-writingDescription.html
 src/main/resources/hudson/plugins/build_timeout/BuildTimeoutWrapper/help-writingDescription_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/AbortOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/AbortOperation/help_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/FailOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/FailOperation/help_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/Messages.properties
 src/main/resources/hudson/plugins/build_timeout/operations/Messages_ja.properties
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/config.jelly
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/config_ja.properties
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help-description.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help-description_ja.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help.html
 src/main/resources/hudson/plugins/build_timeout/operations/WriteDescriptionOperation/help_ja.html
 src/test/java/hudson/plugins/build_timeout/BuildTimeoutWrapperIntegrationTest.java
 src/test/java/hudson/plugins/build_timeout/QuickBuildTimeOutStrategy.java
 src/test/java/hudson/plugins/build_timeout/operations/WriteDescriptionOperationTest.java
http://jenkins-ci.org/commit/build-timeout-plugin/651b539f789859e8ab90322f5315b8cddb89ec7d
Log:
  Merge pull request #18 from ikedam/feature/JENKINS-21919_TimeoutAction

JENKINS-21919 Extension point to define actions when timeout


Compare: https://github.com/jenkinsci/build-timeout-plugin/compare/f38708f00f49...651b539f7898




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)














































SCM/JIRA link daemon
 commented on  JENKINS-21919


Extension point to define timeout action















Code changed in jenkins
User: ikedam
Path:
 src/main/java/hudson/plugins/build_timeout/BuildTimeoutWrapper.java
http://jenkins-ci.org/commit/build-timeout-plugin/21db31b8fc7e929e85e3d2132bd2ab77d18418cd
Log:
  JENKINS-21919 transient for unused fields.





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)















































SCM/JIRA link daemon
 resolved  JENKINS-21919 as Fixed


Extension point to define timeout action
















Change By:


SCM/JIRA link daemon
(03/Mar/14 10:54 PM)




Status:


Open
Resolved





Resolution:


Fixed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-21919) Extension point to define timeout action

2014-03-03 Thread scm_issue_l...@java.net (JIRA)














































SCM/JIRA link daemon
 commented on  JENKINS-21919


Extension point to define timeout action















Code changed in jenkins
User: ikedam
Path:
 src/main/java/hudson/plugins/build_timeout/BuildTimeOutOperation.java
 src/test/java/hudson/plugins/build_timeout/BuildTimeoutWrapperIntegrationTest.java
 src/test/java/hudson/plugins/build_timeout/QuickBuildTimeOutStrategy.java
 src/test/java/hudson/plugins/build_timeout/operations/WriteDescriptionOperationTest.java
http://jenkins-ci.org/commit/build-timeout-plugin/53c7908436575c1e71f3bbd0d26e6d5743b7f93f
Log:
  JENKINS-21919 Added tests for BuildTimeOutOperation.





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [parameterized-trigger] (JENKINS-21932) Job hangs if one of multiple triggered builds was aborted

2014-03-03 Thread de...@ikedam.jp (JIRA)














































ikedam
 commented on  JENKINS-21932


Job hangs if one of multiple triggered builds was aborted















This seems a behavior introduced in Jenkins 1.520. And not fixed even in the latest release (1.553).


Jenkins
result


1.480.3 
don't reproduce


1.509.2 
don't reproduce


1.515   
don't reproduce


1.517   
don't reproduce


1.518   
don't reproduce


1.519   
don't reproduce


1.520 
reproduce


1.532.1 
reproduce  


1.553   
reproduce  





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-14319) Timeout countdown starts running for matrix parent job even when children are waiting for free slave

2014-03-03 Thread de...@ikedam.jp (JIRA)














































ikedam
 commented on  JENKINS-14319


Timeout countdown starts running for matrix parent job even when children are waiting for free slave















Could not reproduce in my environment.
Build timeout does not (and can not) start its timer for matrix parents.
Please report detailed steps to reproduce the problem, and attach log files.
(Especially I want versions of Jenkins and plugins)

This ticket will be closed in a month if no more reports.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [build-timeout] (JENKINS-6077) build timeout does not work for matrix jobs

2014-03-03 Thread de...@ikedam.jp (JIRA)














































ikedam
 commented on  JENKINS-6077


build timeout does not work for matrix jobs















Could not reproduce in my environment.
Build timeout does not (and can not) start its timer for matrix parents.
Please report detailed steps to reproduce the problem, and attach log files.
(Especially I want versions of Jenkins and plugins)

This ticket will be closed in a month if no more reports.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [perforce] (JENKINS-22027) Perforce Fire Storm . . .

2014-03-03 Thread fmer...@qualcomm.com (JIRA)














































Frank Merrow
 created  JENKINS-22027


Perforce Fire Storm . . . 















Issue Type:


Improvement



Assignee:


Rob Petti



Components:


perforce



Created:


04/Mar/14 1:43 AM



Description:


So we have some 20 Jenkins instances each with 1 to 400 jobs . . . total number of jobs . . . 1000 to 1500.

Each of the jobs is setup to Poll Perforce at "H/5 * * * *".

The other thing is that these jobs all have in common is they all have a common "Poll Exclude File(s)":

//source/qcom/qct/modem/arch/hub/...

This setup has been in place for some two years, but the number of systems and jobs is constantly growing.

What appears to have happened today, is that this usually quiet, but important location had like four checkins within like 10 minutes.

So each job at its own time polled perforce . . . and as part of that then did a "describe" on those four change list to see if they can be ignored . . . of course they could be . . . so nothing happened.

So a rush of traffic . . . in the course of 5 minutes 1500 polls and 6000 Describes.

Worse yet, for 98%+ of those jobs, because this was an "exclude" they didn't kick off.

To add insult to injury, during the next five minute cycle it all happened again . . . 1500 plus 6000 . . . 

Our Perforce server eventually sank under the weight of the request load.

What would be nice, is having described the change list . . . cache that information so on the next polling cycle you don't have to ask about the four change lists AGAIN and AGAIN every five minutes until the job builds.

Seems to me the cache could be really simple: CL#1234 is not interesting to this job . . . you don't need to save all the other information, just the result that the change list can be safely ignored.




Environment:


All . . .




Project:


Jenkins



Priority:


Major



Reporter:


Frank Merrow

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.


[JIRA] [core] (JENKINS-20428) javax.servlet.ServletException: net.sf.json.JSONException: JSONObject[batchUpdateUrl] not found.

2014-03-03 Thread doris_...@163.com (JIRA)














































Neola Zhang
 commented on  JENKINS-20428


javax.servlet.ServletException: net.sf.json.JSONException: JSONObject[batchUpdateUrl] not found.















This problem exists after jenkins 1.537
Stack trace

javax.servlet.ServletException: net.sf.json.JSONException: JSONObjectbatchUpdateUrl not found.
	at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:777)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
	at org.kohsuke.stapler.Stapler.invoke(Stapler.java:630)
	at org.kohsuke.stapler.Stapler.service(Stapler.java:224)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
	at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:671)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1436)
	at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:96)
	at hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:58)
	at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:99)
	at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:88)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1407)
	at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1407)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
	at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:174)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:64)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
	at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)
	at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
	at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76)
	at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1407)
	at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:46)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1407)
	at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1407)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:446)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:138)
	at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:540)
	at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:213)
	at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1070)
	at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:375)
	at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:175)
	at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1004)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:136)
	at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:258)
	at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:109)
	at 

Jenkins not locatin jenkins_home, though it exists...

2014-03-03 Thread Pravin Patil
We had a planned outage this weekend and servers where restarted. This also
included the server wherein Jenkins is installed. Jenkins is installed as a
service on linux environment.
   
When trying to start Jenkins, I am getting an error saying “JENKINS_HOME
directory does not exist: /u01/dev/Jenkins”. However, this directory does
exist.  
 
Please assist as it has become a blocker for my automated builds. 

I have tried the below till now: 

[root@pdlvde Jenkins]# /sbin/service jenkins restart 
JENKINS_HOME directory does not exist: /u01/dev/Jenkins 
[root@pdlvde Jenkins]# /sbin/service jenkins stop 
JENKINS_HOME directory does not exist: /u01/dev/Jenkins 
[root@pdlvde Jenkins]# 



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Jenkins-not-locatin-jenkins-home-though-it-exists-tp4692909.html
Sent from the Jenkins issues mailing list archive at Nabble.com.

-- 
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/groups/opt_out.


[JIRA] [job-dsl-plugin] (JENKINS-22020) Different Maven Installations are not supported

2014-03-03 Thread m...@daniel-spilker.com (JIRA)














































Daniel Spilker
 commented on  JENKINS-22020


Different Maven Installations are not supported















It's a Groovy thing. AFAIK, each closure defines it's own it variable. So the maven {} closure has a different it variable, which will be null because no parameter is passed in. The following should work:


...
steps {
existingMavenInstallations.each { installation -
maven {
mavenInstallation(installation)
...
}
}
}
...




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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/groups/opt_out.