[JIRA] [git] (JENKINS-5677) git scm does not detect changes on master branch of upstream repo

2014-03-25 Thread chadrhy...@gmail.com (JIRA)














































Chad Rhyner
 commented on  JENKINS-5677


git scm does not detect changes on master branch of upstream repo















I ran into this issue as well.

I am running the following Git plugins, with their versions:


	Git Client plugin 1.6.2
	Git Parameter plugin 0.2
	Git Plugin 2.0.1
	Github API Plugin 1.44
	Github Authentication Plugin 0.14
	Github Plugin 1.8
	Github Pull Request Builder Plugin 1.9



On both the master and the slave, I am running git version 1.8.3.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/d/optout.


[JIRA] [core] (JENKINS-22310) CLI slow performance investigation

2014-03-25 Thread k...@kohsuke.org (JIRA)














































Kohsuke Kawaguchi
 commented on  JENKINS-22310


CLI slow performance investigation















Holy classloader recursion, Batman!


import org.jvnet.hudson.annotation_indexer.*;
import hudson.cli.declarative.*;

for (int j=0; j10; j++) {
long l = System.currentTimeMillis();
for (int i=0; i10; i++) {
for (Class c : Index.list(OptionHandlerExtension.class, Jenkins.getInstance().pluginManager.uberClassLoader,Class.class))
; // no-op
}
println System.currentTimeMillis()-l;
}



I've installed about 40 random plugins on Jenkins on Tomcat and run the code above on it to get the sense of how long it takes to run them. Each full lookup is taking a whopping 500ms!

5595
5628
5604
5610
5573
5622
5783
6417
5703
5687

The problem is that AntClassLoader.findResources is calling parent.getResources() when it really shouldn't. The parent classloader in this case is DependencyClassLoader, which tries every dependency. The net result is that Tomcat classloader gets hit O(E*V) times for the number of edges and nodes in the plugin dependency graph.

But this makes no sense, because we specifically call AntClassLoader.findResources(String) to prevent recursion into parent classloader. The reason this happens is because AntClassLoader has the following line:


if (parent != null  (!parentHasBeenSearched || parent != getParent())) {
// Delegate to the parent:
base = parent.getResources(name);
// Note: could cause overlaps in case
// ClassLoader.this.parent has matches and
// parentHasBeenSearched is true
} else {
// ClassLoader.this.parent is already delegated to for example from
// ClassLoader.getResources, no need:
base = new CollectionUtils.EmptyEnumeration();
}



parent!=getParent() indeed because Ant doesn't call the superclass constructor and pass in the specified parent classloader.

After fixing this in 9a2882dd704bece9b7ca51a52347dad15d79f843, this went down to the following:

69
13
15
14
10
10
10
9
8
9

Problem solved!



























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/d/optout.


[JIRA] [core] (JENKINS-22311) gerrit trigger can cause unwieldy build history when there are pending jobs

2014-03-25 Thread rin...@java.net (JIRA)














































rin_ne
 commented on  JENKINS-22311


gerrit trigger can cause unwieldy build history when there are pending jobs















From screenshot, this issue is not "long string in a parameter" but "too many parameters". Is it correct?

If so, plugin does not have any solution to fix this.



























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/d/optout.


[JIRA] [unity3d-plugin] (JENKINS-22315) Jenkins stalls building project, works fine outside of jenkins

2014-03-25 Thread lacos...@java.net (JIRA)














































lacostej
 commented on  JENKINS-22315


Jenkins stalls building project, works fine outside of jenkins















Mike,

I set up a Windows 8.1 build machine this morning (using the 1.532.2 stable version), and I am able to start the build without problem. With either unity3d-plugin 0.5 or 0.6 and Unity3d 4.3.3f1

I suggest you look at the troubleshooting section:
https://wiki.jenkins-ci.org/display/JENKINS/Unity3dBuilder+Plugin#Unity3dBuilderPlugin-Troubleshootingfailures



























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/d/optout.


[JIRA] [git] (JENKINS-22319) Updating Git plugin causes existing builds to immediately fail

2014-03-25 Thread bcooks...@kde.org (JIRA)














































Ben Cooksley
 commented on  JENKINS-22319


Updating Git plugin causes existing builds to immediately fail















We use a branch which will only exist locally on the build slave for various reasons. 
This prefixing is likely the cause of this issue - will attach a job definition shortly.



























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/d/optout.


[JIRA] [subversion] (JENKINS-22332) StringIndexOutOfBoundsException: String index out of range: -7 when analyzing the changes of an svn:external

2014-03-25 Thread cbos...@gmail.com (JIRA)














































Cees Bos
 created  JENKINS-22332


StringIndexOutOfBoundsException: String index out of range: -7 when analyzing the changes of an svn:external















Issue Type:


Bug



Assignee:


Unassigned


Components:


subversion



Created:


25/Mar/14 7:41 AM



Description:



hudson.util.IOException2: revision check failed on http://srv-ind-scrat:8080/repos/bcp/branches/private/cbos/components/xds/src/dbschema
	at hudson.scm.SubversionChangeLogBuilder.buildModule(SubversionChangeLogBuilder.java:189)
	at hudson.scm.SubversionChangeLogBuilder.run(SubversionChangeLogBuilder.java:132)
	at hudson.scm.SubversionSCM.calcChangeLog(SubversionSCM.java:738)
	at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:899)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1414)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:671)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:580)
	at hudson.model.Run.execute(Run.java:1676)
	at hudson.matrix.MatrixBuild.run(MatrixBuild.java:304)
	at hudson.model.ResourceController.execute(ResourceController.java:88)
	at hudson.model.Executor.run(Executor.java:231)
	at hudson.model.OneOffExecutor.run(OneOffExecutor.java:43)
Caused by: org.tmatesoft.svn.core.SVNException: svn: E175002: REPORT /repos/bcp/!svn/bc/262146/branches/private/cbos/components/xds/src/dbschema failed
	at org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:386)
	at org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:373)
	at org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.request(HTTPConnection.java:361)
	at org.tmatesoft.svn.core.internal.io.dav.DAVConnection.performHttpRequest(DAVConnection.java:707)
	at org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doReport(DAVConnection.java:334)
	at org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doReport(DAVConnection.java:324)
	at org.tmatesoft.svn.core.internal.io.dav.DAVRepository.logImpl(DAVRepository.java:995)
	at org.tmatesoft.svn.core.io.SVNRepository.log(SVNRepository.java:1035)
	at org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteLog.run(SvnRemoteLog.java:181)
	at org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteLog.run(SvnRemoteLog.java:35)
	at org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.run(SvnOperationRunner.java:20)
	at org.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1238)
	at org.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294)
	at org.tmatesoft.svn.core.wc.SVNLogClient.doLog(SVNLogClient.java:967)
	at org.tmatesoft.svn.core.wc.SVNLogClient.doLog(SVNLogClient.java:872)
	at hudson.scm.SubversionChangeLogBuilder.buildModule(SubversionChangeLogBuilder.java:177)
	... 12 more
Caused by: svn: E175002: REPORT /repos/bcp/!svn/bc/262146/branches/private/cbos/components/xds/src/dbschema failed
	at org.tmatesoft.svn.core.SVNErrorMessage.create(SVNErrorMessage.java:208)
	at org.tmatesoft.svn.core.SVNErrorMessage.create(SVNErrorMessage.java:154)
	at org.tmatesoft.svn.core.SVNErrorMessage.create(SVNErrorMessage.java:97)
	... 28 more
Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: -7
	at java.lang.String.substring(String.java:1949)
	at java.lang.String.substring(String.java:1916)
	at hudson.scm.DirAwareSVNXMLLogHandler.handleLogEntry(DirAwareSVNXMLLogHandler.java:90)
	at org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$7.receive(SvnCodec.java:167)
	at org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$7.receive(SvnCodec.java:164)
	at org.tmatesoft.svn.core.wc2.SvnReceivingOperation.receive(SvnReceivingOperation.java:78)
	at org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteLog.handleLogEntry(SvnRemoteLog.java:199)
	at org.tmatesoft.svn.core.internal.io.dav.DAVRepository$1.handleLogEntry(DAVRepository.java:950)
	at org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLogHandler.endElement(DAVLogHandler.java:226)
	at 

[JIRA] [git] (JENKINS-22319) Updating Git plugin causes existing builds to immediately fail

2014-03-25 Thread bcooks...@kde.org (JIRA)














































Ben Cooksley
 updated  JENKINS-22319


Updating Git plugin causes existing builds to immediately fail
















Job configuration as requested.





Change By:


Ben Cooksley
(25/Mar/14 7:42 AM)




Attachment:


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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

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















































SCM/JIRA link daemon
 resolved  JENKINS-21579 as Fixed


Very slow resource loading from UberClassLoader
















Change By:


SCM/JIRA link daemon
(25/Mar/14 7:53 AM)




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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

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














































SCM/JIRA link daemon
 commented on  JENKINS-21579


Very slow resource loading from UberClassLoader















Code changed in jenkins
User: Kohsuke Kawaguchi
Path:
 core/src/main/java/hudson/ClassicPluginStrategy.java
 core/src/main/java/jenkins/util/AntClassLoader.java
http://jenkins-ci.org/commit/jenkins/69773dc9f785b12f033ba268fb4e4107fc3e7f46
Log:
  JENKINS-21579 Copied as-is from Ant 1.8.3 to apply patches





























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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

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














































SCM/JIRA link daemon
 commented on  JENKINS-21579


Very slow resource loading from UberClassLoader















Code changed in jenkins
User: Kohsuke Kawaguchi
Path:
 changelog.html
 core/src/main/java/jenkins/util/AntClassLoader.java
http://jenkins-ci.org/commit/jenkins/9a2882dd704bece9b7ca51a52347dad15d79f843
Log:
  FIXED JENKINS-21579 UberClassLoader.findResources() improvements

This is just a locally patched version, so not meant to be used outside
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/d/optout.


[JIRA] [promoted-builds] (JENKINS-22333) Possibility to transfer job config via REST API (promotion config needed in job config.xml)

2014-03-25 Thread chrissy.meye...@gmail.com (JIRA)














































Christian Meyer
 created  JENKINS-22333


Possibility to transfer job config via REST API (promotion config needed in job config.xml)















Issue Type:


New Feature



Assignee:


Unassigned


Components:


promoted-builds



Created:


25/Mar/14 7:56 AM



Description:


At the moment it is not possible to transfer the promotion config via REST API to a Jenkins instance.
We have several Jenkins instances and are transferring our jobs from one instance to another instance really often. But as we have to transfer the promotion configuration manually it is a pain.
Therefore it would be good, when the promotion config would also be in the central job config.xml so that we can use for transferring just the REST API.




Project:


Jenkins



Labels:


plugins
jenkins
promoted-builds




Priority:


Minor



Reporter:


Christian Meyer

























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/d/optout.


[JIRA] [subversion] (JENKINS-10239) org.tmatesoft.svn.core.SVNErrorMessage: svn: Operation cancelled from the SVN plugin

2014-03-25 Thread christ...@plaetzinger.de (JIRA)














































Christian Plätzinger
 commented on  JENKINS-10239


org.tmatesoft.svn.core.SVNErrorMessage: svn: Operation cancelled from the SVN plugin















Thanks for you reply. I was able to work around the issue by using an external svn tool which saved the credentials to the default svn settings folder. Now the Jenkins SVN plugin uses this credentials.



























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/d/optout.


[JIRA] [ec2] (JENKINS-17410) Unable to delete ec2 slave

2014-03-25 Thread w...@wooh.hu (JIRA)















































Adam PAPAI
 resolved  JENKINS-17410 as Fixed


Unable to delete ec2 slave
















This works now as expected. Not sure which commit fixes it, but it's Ok now.

INFO: job2 #3 main build action completed: SUCCESS
Mar 25, 2014 9:09:00 AM hudson.model.AsyncPeriodicWork$1 run
INFO: Started EC2 alive slaves monitor
Mar 25, 2014 9:09:02 AM hudson.plugins.ec2.EC2SlaveMonitor execute
INFO: EC2 instance is dead: i-e0fa86e9
Mar 25, 2014 9:09:02 AM hudson.plugins.ec2.EC2OndemandSlave terminate
INFO: EC2 instance already terminated: i-e0fa86e9
Mar 25, 2014 9:09:02 AM hudson.plugins.ec2.EC2SlaveMonitor execute
INFO: EC2 instance is dead: i-cbfb87c2
Mar 25, 2014 9:09:03 AM hudson.plugins.ec2.EC2OndemandSlave terminate
INFO: EC2 instance already terminated: i-cbfb87c2
Mar 25, 2014 9:09:03 AM hudson.model.AsyncPeriodicWork$1 run
INFO: Finished EC2 alive slaves monitor. 2387 ms





Change By:


Adam PAPAI
(25/Mar/14 8:13 AM)




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/d/optout.


[JIRA] [shelve-project-plugin] (JENKINS-17272) Shelve project requires an executor on the master

2014-03-25 Thread mani...@gmail.com (JIRA)














































Manivannan Selvaraj
 commented on  JENKINS-17272


Shelve project requires an executor on the master















Ash/Ben,

I was wondering if I can we make the node label(where to run shelving projects) configurable? Will that solve this issue? 



























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/d/optout.


[JIRA] [android-emulator] (JENKINS-22334) plugin thinks emulator always crashes using sdk 22.6.1

2014-03-25 Thread mouse...@gmail.com (JIRA)














































Tom Billiet
 created  JENKINS-22334


plugin thinks emulator always crashes using sdk 22.6.1















Issue Type:


Bug



Affects Versions:


current



Assignee:


Christopher Orr



Components:


android-emulator



Created:


25/Mar/14 9:12 AM



Description:


Running android unit tests from gradle is not possible anymore using the latest android sdk (22.6.1). Using 22.3 everything was fine.
Running the same tests locally without jenkins everything is fine too.

Behavior seen is that the jenkins plugins seems to think that the emulator has crashed and hence stops the tests. Output seen from the gradle script:

Starting 115 tests on sdk - 4.3

com.example.MyTest  testAndroidTestCaseSetupProperlysdk - 4.3  [31mFAILED  [0m
Test failed to run to completion. Reason: 'Instrumentation run failed due to 'Process crashed.''. Check device logcat for details
Tests on sdk - 4.3 failed: Instrumentation run failed due to 'Process crashed.'
Starting 115 tests on emulator-38135 - 4.3

com.example.MyTest  testAndroidTestCaseSetupProperlyemulator-38135 - 4.3  [32mSUCCESS  [0m
-- then the tests stop executing. Also strange to notice is that is seems to try to restart a new emulator with the name "emulator-38135" instead of the normal name "sdk"


Logcat output is not very helpful, something seems to force-stop the tests:
03-25 04:12:16.633 I/ActivityManager(  285): Start proc com.mypackage.library.test for added application com.mypackage.library.test: pid=1622 uid=10046 gids={50046, 3003, 1028}
03-25 04:12:17.453 I/TestRunner( 1622): started: testAndroidTestCaseSetupProperly(com.mypackage.MyFirstTest)

03-25 04:12:19.763 I/ActivityManager(  285): Force stopping package com.mypackage.library.test appid=10046 user=0
03-25 04:12:19.763 I/ActivityManager(  285): Killing proc 1622:com.mypackage.library.test/u0a10046: force stop com.mypackage.library.test
03-25 04:12:19.783 W/ActivityManager(  285): Crash of app com.mypackage.library.test running instrumentation ComponentInfo{com.mypackage.library.test.test/android.test.InstrumentationTestRunner}




Project:


Jenkins



Priority:


Critical



Reporter:


Tom Billiet

























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/d/optout.


[JIRA] [shelve-project-plugin] (JENKINS-17272) Shelve project requires an executor on the master

2014-03-25 Thread mani...@gmail.com (JIRA)












































 
Manivannan Selvaraj
 edited a comment on  JENKINS-17272


Shelve project requires an executor on the master
















Ash/Ben,

I was wondering if I can we make the node label(where to run shelving projects) configurable rather than shelving projects looking for nodes with 'Utilize this slave as much as possible'? 



























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/d/optout.


[JIRA] [disk-usage] (JENKINS-22120) Confusing disk usage row on project page

2014-03-25 Thread and...@hammar.net (JIRA)















































Anders Hammar
 resolved  JENKINS-22120 as Duplicate


Confusing disk usage row on project page
















Change By:


Anders Hammar
(25/Mar/14 9:20 AM)




Status:


Open
Resolved





Assignee:


LucieVotypkova
AndersHammar





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/d/optout.


[JIRA] [android-emulator] (JENKINS-22334) plugin thinks emulator always crashes using sdk 22.6.1

2014-03-25 Thread ch...@orr.me.uk (JIRA)














































Christopher Orr
 commented on  JENKINS-22334


plugin thinks emulator always crashes using sdk 22.6.1















Is there a stacktrace in logcat when the app crashes?

What is the Jenkins console output for the whole job?



























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/d/optout.


[JIRA] [core] (JENKINS-22311) gerrit trigger can cause unwieldy build history when there are pending jobs

2014-03-25 Thread rsand...@java.net (JIRA)














































rsandell
 updated  JENKINS-22311


gerrit trigger can cause unwieldy build history when there are pending jobs
















Change By:


rsandell
(25/Mar/14 9:26 AM)




Assignee:


rsandell





Component/s:


gerrit-trigger



























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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

2014-03-25 Thread dogf...@java.net (JIRA)














































dogfood
 commented on  JENKINS-21579


Very slow resource loading from UberClassLoader















Integrated in  jenkins_main_trunk #3253
 JENKINS-21579 Copied as-is from Ant 1.8.3 to apply patches (Revision 69773dc9f785b12f033ba268fb4e4107fc3e7f46)
FIXED JENKINS-21579 UberClassLoader.findResources() improvements (Revision 9a2882dd704bece9b7ca51a52347dad15d79f843)

 Result = UNSTABLE
kohsuke : 69773dc9f785b12f033ba268fb4e4107fc3e7f46
Files : 

	core/src/main/java/jenkins/util/AntClassLoader.java
	core/src/main/java/hudson/ClassicPluginStrategy.java



kohsuke : 9a2882dd704bece9b7ca51a52347dad15d79f843
Files : 

	changelog.html
	core/src/main/java/jenkins/util/AntClassLoader.java





























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/d/optout.


[JIRA] [git] (JENKINS-22278) Allow switching to a specific git revision

2014-03-25 Thread rab...@java.net (JIRA)














































raboof
 commented on  JENKINS-22278


Allow switching to a specific git revision















Is there an issue for the work on adding a help text to that field? Couldn't find it but searching JIRA is a bit of a pain :S.



























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/d/optout.


[JIRA] [core] (JENKINS-13357) Autoinstall JDK from download.oracle.com no longer works

2014-03-25 Thread mtu...@java.net (JIRA)














































mturra
 commented on  JENKINS-13357


Autoinstall JDK from download.oracle.com no longer works















The url changed from
http://download.oracle.com/otn/java/jdk/7u15-b03/jdk-7u15-linux-x64.tar.gz
to
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-x64.tar.gz




























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/d/optout.


[JIRA] [disk-usage] (JENKINS-22335) The disk usage size displayed for each build in the Build History is sometimes incorrect

2014-03-25 Thread and...@hammar.net (JIRA)














































Anders Hammar
 created  JENKINS-22335


The disk usage size displayed for each build in the Build History is sometimes incorrect















Issue Type:


Bug



Affects Versions:


current



Assignee:


Lucie Votypkova



Components:


disk-usage



Created:


25/Mar/14 9:44 AM



Description:


The disk usage size displayed for each build in the Build History is sometimes incorrect. Once the Builds Disk Usage is recorded it is updated. This is misleading for users if the do some config change and then perform a build and then look at the disk usage size (which then sometimes is incorrect).
I believe prior versions of the disk-usage plugin didn't display disk size right away.

One way to re-produce this is to create a Maven build job and switch the "inactivate artifact archiving" option. Disk size should be smaller when inactived, but the displayed figure doesn't not show this until after the record builds disk usage task is executed.




Environment:


Jenkins LTS 1.532.2 with Disk Usage plugin 0.23 running on Windows Server with Oracle JDK 1.7.0_25




Project:


Jenkins



Priority:


Major



Reporter:


Anders Hammar

























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/d/optout.


[JIRA] [android-emulator] (JENKINS-22334) plugin thinks emulator always crashes using sdk 22.6.1

2014-03-25 Thread mouse...@gmail.com (JIRA)














































Tom Billiet
 updated  JENKINS-22334


plugin thinks emulator always crashes using sdk 22.6.1
















Attached the complete logcat and jenkins output.
You'll notice that unit tests are started multiple times as there are several gradle subprojects with tests.





Change By:


Tom Billiet
(25/Mar/14 9:45 AM)




Attachment:


consoleText





Attachment:


logcat.txt



























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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
This is really attention-grabbing, You are a very professional blogger.
http://lasev.com/ I have joined your rss feed and look ahead to searching
for extra of your magnificent post. Also, I have shared your site in my
social networks!
vegas88.asia http://vegas88.asia/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695952.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
Thanks for the diverse tips contributed on this website. I have observed that
many insurance carriers offer customers generous savings if they elect to
insure a couple of cars with them. A significant number of households
currently have several automobiles these days, particularly those with
elderly teenage children still residing at home, plus the savings in
policies may soon begin. So it is a good idea to look for a bargain 
bokeps http://video-bokeps.com/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695953.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
Excellent post, I agree with you 100%! I’m always scouring the Internet for
new information and learning whatever I can, and in doing so I sometimes
leave comments on blogs. I don’t do it for SEO purposes necessarily, but to
learn new things. 
vipbet88.biz http://vipbet88.biz/  




--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695954.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
I'm impressed, I must say. Very rarely do I come across a blog that's both
informative and entertaining, and let me tell you, you've hit the nail on
the head. Your blog is important; the issue is something that not enough
people are talking intelligently about. 
Hosting Indonesia http://www.radjahosting.com/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695955.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
must say that overall I am really impressed with this blog. It is easy to see
that you are passionate about your writing. If only I had your writing
ability I look forward to more updates and will be returning. 
Togel http://www2.nagatogel.com/  




--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695957.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
This is a nice and informative, containing all information and also has a
great impact on the new technology. Thanks for sharing it 
Nagatogel http://www3.nagatogel.com/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695958.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
I really enjoy simply reading all of your weblogs. Simply wanted to inform
you that you have people like me who appreciate your work. Definitely a
great post 
Film Porno http://skandal-artis.com/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695959.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
Thank you for another fantastic posting. Where else could anyone get that
kind of information in such a perfect way of writing? I have a speech next
week, and I was looking for more info ;) 
golf.dynamicsentosa.com http://golf.dynamicsentosa.com/wp/  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695960.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/d/optout.


Re: Agen judi online terpercaya hokybet

2014-03-25 Thread Rustafo
You should write about the model/version on the blog. You can expose it's
perfect. Your blog examination should widen your readership.I am really
grateful for your blog post. I find a lot of approaches after visiting your
post. Great work..looking for affordable and trusted hosting?come and visit 
Bokep Indonesia
http://waqkhied.pun.bz/kumpulan-situs-bokep-bisa-download-lewat.xhtml  



--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Agen-judi-online-terpercaya-hokybet-tp4678816p4695962.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/d/optout.


[JIRA] [core] (JENKINS-21882) v1.551 + GitHub OAuth == broken api token access

2014-03-25 Thread jenshniel...@gmail.com (JIRA)














































Jens Nielsen
 commented on  JENKINS-21882


v1.551 + GitHub OAuth == broken api token access















The issue was resolved for me on the 1.532.2 lts (same time as 1.551) release. I have not tested any of the regular releases. Is it possible that another issue broke the 
this on one of the release following this i.e.  1.552 .. 1.556



























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/d/optout.


[JIRA] [core] (JENKINS-21882) v1.551 + GitHub OAuth == broken api token access

2014-03-25 Thread jenshniel...@gmail.com (JIRA)














































Jens Nielsen
 commented on  JENKINS-21882


v1.551 + GitHub OAuth == broken api token access















Another thing. The latest release (0.15) does not appear in the update center nor 
on the download server here https://updates.jenkins-ci.org/download/plugins/



























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/d/optout.


[JIRA] [core] (JENKINS-22310) CLI slow performance investigation

2014-03-25 Thread o.v.nenas...@gmail.com (JIRA)














































Oleg Nenashev
 updated  JENKINS-22310


CLI slow performance investigation
















Thanks a lot for the fix. It work well on my dev. installations.
Marked the issue as lts-candidate





Change By:


Oleg Nenashev
(25/Mar/14 11:05 AM)




Labels:


cli
lts-candidate
performanceregression



























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/d/optout.


[JIRA] [extensible-choice-parameter] (JENKINS-22282) Extensible choice parameter greyed out in Internet Explorer

2014-03-25 Thread sven.appenr...@iav.de (JIRA)














































Sven Appenrodt
 commented on  JENKINS-22282


Extensible choice parameter greyed out in Internet Explorer















Did you also test it with reduced rights? I assume the reporter has logged on with a user, which has permission to run a build, but not to configure the job (or jenkins-settings).
It's just an idea...



























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/d/optout.


[JIRA] [subversion] (JENKINS-14155) Automatically select/build the latest svn tag (via List Subversion tags build params?)

2014-03-25 Thread pmora...@gmail.com (JIRA)














































Pedro Goncalves
 commented on  JENKINS-14155


Automatically select/build the latest svn tag (via List Subversion tags build params?)















Hi S B, sorry, I though you made an affirmation, not a question. This issue (feature) is not Done.



























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/d/optout.


[JIRA] [sbt] (JENKINS-15824) SBT plugin does not support paths to sbt-launcher.jar to be configured per node

2014-03-25 Thread h...@worldticket.net (JIRA)














































Hack Kampbjørn
 commented on  JENKINS-15824


SBT plugin does not support paths to sbt-launcher.jar to be configured per node 















This works with a manually built and installed SBT plugin directly from githhub. Can we please get a new release?



























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/d/optout.


[JIRA] [ssh] (JENKINS-22336) The hosts are missing after a new SSH remote host in configuration was added and changes were applyed

2014-03-25 Thread maksymilian.piatkow...@misys.com (JIRA)














































Maksymilian Piatkowski
 created  JENKINS-22336


The hosts are missing after a new SSH remote host in configuration was added and changes were applyed   















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


ssh



Created:


25/Mar/14 12:53 PM



Description:


When the new SSH remote host is added in Jenkins Configuration, and the changes were applied, from the list of 10 hosts (11th should be added) only 3 of them left in configuration. Then when the backup copy of org.jvnet.hudson.plugins.SSHBuildWrapper.xml file were loaded or the "reload configuration from the disc" option were used we still saw only 3 hosts instead of 10. After restart Jenkins with backup file loaded in configuration the initial list of 10 hosts occure.




Due Date:


21/Mar/14 12:00 AM




Project:


Jenkins



Priority:


Major



Reporter:


Maksymilian Piatkowski

























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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

2014-03-25 Thread jgl...@cloudbees.com (JIRA)















































Jesse Glick
 assigned  JENKINS-21579 to Kohsuke Kawaguchi



Very slow resource loading from UberClassLoader
















What about calling super(parent) from AntClassLoader improves matters? Was the problem that most resource loads are from core? If so, does this still correctly handle plugins that request parent-first loading?





Change By:


Jesse Glick
(25/Mar/14 1:03 PM)




Assignee:


KohsukeKawaguchi



























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/d/optout.


[JIRA] [cli] (JENKINS-22301) Replace list-jobs CLI command with list-items

2014-03-25 Thread ogon...@gmail.com (JIRA)














































Oliver Gondža
 updated  JENKINS-22301


Replace list-jobs CLI command with list-items
















Change By:


Oliver Gondža
(25/Mar/14 1:32 PM)




Description:


Createmoreflexibleandwelldefinedreplacementfor{{list-jobs}}.-PrintfullitemnamessoitcanbefedtootherCLIcommands.-Printfulldisplaynameswhen{{--show-display-names}}used.-Listitemsdirectlycontainedin{{View}}/{{ItemGroup}}.-Listallitemscontainedin{{View}}/{{ItemGroup}}(evenindirectly)whencalledwith{{--recursive}}.
-{{\-\-folderx/y\-\-viewz/q}}shouldlistwhatever{{$JENKINS/job/x/job/y/view/z/view/q/}}lists.{{\-\-folder}}defaultstoJenkins,when{{\-\-view}}isnotprovidedallfolderitemsarelisted.



























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/d/optout.


[JIRA] [core] (JENKINS-22338) Safari siltenly overwrites various username or password fields

2014-03-25 Thread y...@schli.ch (JIRA)














































Marc Günther
 created  JENKINS-22338


Safari siltenly overwrites various username or password fields















Issue Type:


Bug



Assignee:


stephenconnolly



Components:


core, credentials



Created:


25/Mar/14 1:51 PM



Description:


I am using Safari on Mac, and have it set it up to remember my username/password for the login screen.

Now in various other (non-login) pages in Jenkins, there is a username or password field, and Safari overwrites those fields with my stored user info on each page load, even if they already contain other values. The fields are shown with a yellow background.

This happens for example:

	In the proxy configuration of Plugin Manager - Advanced
	When adding or EDITING a credential
	When adding a credential of kind Certificate: the filename field is filled with my username, but the password field is not touched.
	When going to Manage Credentials page, I have a "SSH username with private key" and a "Username with password" credential, and it replaces the username of the first, and the password field of the second entry



It does NOT happen in some other places, for example the Jira Setup.




Environment:


Safari 6.1.1, MacOSX 10.8.5




Project:


Jenkins



Priority:


Trivial



Reporter:


Marc Günther

























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/d/optout.


[JIRA] [dependency-check-jenkins] (JENKINS-21762) OWASP DependencyChecker cve.2.9.h2.db still in use after successful build

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















































Walter Kacynski
 assigned  JENKINS-21762 to Steve Springett



OWASP DependencyChecker cve.2.9.h2.db still in use after successful build
















Change By:


Walter Kacynski
(25/Mar/14 1:53 PM)




Assignee:


SteveSpringett



























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/d/optout.


[JIRA] [dependency-check-jenkins] (JENKINS-21762) OWASP DependencyChecker cve.2.9.h2.db still in use after successful build

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














































Walter Kacynski
 reopened  JENKINS-21762


OWASP DependencyChecker cve.2.9.h2.db still in use after successful build
















You indicate that the build step is only there for convenience.  In this case it is convenient for us to use it because we want to force all our application builds to adopt this method without the need to change each build script individually.  Usually when a build script is executed, it spawns an external process and it does not run under the slave process.  I still think that there is room for improvement in this convenience builder step. 





Change By:


Walter Kacynski
(25/Mar/14 1:53 PM)




Resolution:


NotADefect





Status:


Resolved
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/d/optout.


[JIRA] [checkstyle] (JENKINS-22337) Checkstyle incorrect syntax highlight of source files

2014-03-25 Thread aik.b...@gmail.com (JIRA)














































Alexander Obuhovich
 created  JENKINS-22337


Checkstyle incorrect syntax highlight of source files















Issue Type:


Bug



Assignee:


Ulli Hafner



Attachments:


Jenkins_Checkstyle_WrongSyntaxHighlight.png



Components:


checkstyle



Created:


25/Mar/14 1:46 PM



Description:


I don't know why, but Checkstyle way to highlight syntax in the source code is completely broken. Right now (at least in PHP files) it highlights some keywords (like private/protected) and first 2 letters of every string literal.




Project:


Jenkins



Labels:


syntax
highlight




Priority:


Major



Reporter:


Alexander Obuhovich

























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/d/optout.


[JIRA] [analysis-core] (JENKINS-22337) Support highlighting of non Java files

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














































Ulli Hafner
 updated  JENKINS-22337


Support highlighting of non Java files
















Actually I'm using the tool java2html to render source files. There is no support for other languages. (The tool itself is not under active development anymore). Do you know an alternative?





Change By:


Ulli Hafner
(25/Mar/14 2:00 PM)




Summary:


Checkstyleincorrectsyntaxhighlight
Supporthighlighting
of
source
nonJava
files





Issue Type:


Bug
NewFeature





Priority:


Major
Minor





Component/s:


analysis-core





Component/s:


checkstyle



























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/d/optout.


[JIRA] [core] (JENKINS-22310) CLI slow performance investigation

2014-03-25 Thread jgl...@cloudbees.com (JIRA)















































Jesse Glick
 resolved  JENKINS-22310 as Duplicate


CLI slow performance investigation
















Change By:


Jesse Glick
(25/Mar/14 2: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/d/optout.


[JIRA] [core] (JENKINS-22310) CLI slow performance investigation

2014-03-25 Thread jgl...@cloudbees.com (JIRA)














































Jesse Glick
 updated  JENKINS-22310


CLI slow performance investigation
















Change By:


Jesse Glick
(25/Mar/14 2:06 PM)




Labels:


cli
lts-candidate
performanceregression



























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/d/optout.


[JIRA] [analysis-core] (JENKINS-22337) Support highlighting of non Java files

2014-03-25 Thread aik.b...@gmail.com (JIRA)














































Alexander Obuhovich
 commented on  JENKINS-22337


Support highlighting of non Java files















You can use http://pygments.org/docs/cmdline/ . This is a nice tool written on the Python, which you can invoke from command line. It automatically detects what syntax needs to be used based on the file extension.

On my machine I use it to colorize output of the cat command.



























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/d/optout.


[JIRA] [core] (JENKINS-21579) Very slow resource loading from UberClassLoader

2014-03-25 Thread jgl...@cloudbees.com (JIRA)














































Jesse Glick
 commented on  JENKINS-21579


Very slow resource loading from UberClassLoader















JENKINS-22310 has the discussion.



























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/d/optout.


[JIRA] [core] (JENKINS-13357) Autoinstall JDK from download.oracle.com no longer works

2014-03-25 Thread bruno...@gmail.com (JIRA)














































Bruno Medeiros
 commented on  JENKINS-13357


Autoinstall JDK from download.oracle.com no longer works















Same problem here:

Installing JDK jdk-7u40-oth-JPR
Downloading JDK from http://download.oracle.com/otn/java/jdk/7u40-b43/jdk-7u40-linux-x64.tar.gz
Downloading 5307bytes
Installing /var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh
Sun_JDK_1.7 $ /var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh -noregister
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 1: html: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 2: head: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 3: title: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 4: META: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 5: link: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 6: link: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 7: $'\r': command not found
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 8: body: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 9: div: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 10: table: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 11: tr: No such file or directory
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 12: syntax error near unexpected token `'
/var/lib/jenkins/tools/hudson.model.JDK/Sun_JDK_1.7/jdk.sh: line 12: `  td rowspan="2" valign="middle" nowrapa href=""img src="" width="154" height="19" hspace="10" vspace="25" border="0" /a/td
'
ERROR: Failed to install JDK. Exit code=2



























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/d/optout.


[JIRA] [tfs] (JENKINS-21460) TFS plugin throws NumberFormatException

2014-03-25 Thread razvan.mih...@gmail.com (JIRA)












































 
Razvan Gherghina
 edited a comment on  JENKINS-21460


TFS plugin throws NumberFormatException 
















I get the same error in Jenkins. From what I can see the "tf history" command is used without sending the specified TFS username/password. Because of this, the call returns with an empty result which is not correctly parsed and thus giving this error.
Because of this the build cannot continue.



























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/d/optout.


[JIRA] [tfs] (JENKINS-21460) TFS plugin throws NumberFormatException

2014-03-25 Thread razvan.mih...@gmail.com (JIRA)














































Razvan Gherghina
 commented on  JENKINS-21460


TFS plugin throws NumberFormatException 















I get the same error. >From what I can see the "tf history" command is used without sending the specified TFS username/password. Because of this, the call returns with an empty result which is not correctly parsed and thus giving this error.



























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/d/optout.


[JIRA] [release] (JENKINS-22339) Enable environment variables for M2 Release Plugin

2014-03-25 Thread nh...@computechinc.com (JIRA)














































Neil Hunt
 created  JENKINS-22339


Enable environment variables for M2 Release Plugin















Issue Type:


New Feature



Assignee:


Peter Hayes



Components:


release



Created:


25/Mar/14 3:18 PM



Description:


Are we able to get the release version and development version into Jenkins environment variables with the M2 Release Plugin? If not, could you please add this? Seems like an easy fix?




Project:


Jenkins



Priority:


Minor



Reporter:


Neil Hunt

























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/d/optout.


[JIRA] [analysis-core] (JENKINS-22337) Support highlighting of non Java files

2014-03-25 Thread aik.b...@gmail.com (JIRA)














































Alexander Obuhovich
 commented on  JENKINS-22337


Support highlighting of non Java files















Always glad to help fellow developer. Keep me posted if a new version of plugin comes out with support of syntax highlight.

Also would previously created builds be able to use new syntax highlight it this would be applied only to builds, created since plugin version update?



























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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread sschube...@gmail.com (JIRA)














































Sebastian Schuberth
 commented on  JENKINS-21547


Add information to console log when a job is aborted by gerrit















Does the current build really get aborted when there is a new patch set? Because the documentation for the "Build Current Patches Only" option says otherwise: "If this is enabled, all still scheduled builds for previous patchsets are canceled when a new build is scheduled by a new patchset". So the scheduled builds will be cancelled, not the current build will be aborted, meaning that you still have to wait for the completion of the current job even if the change is superseded by a new patch set.

If the documentation turns out to be wrong, and the current build is indeed aborted, could the documentation be fixed as part of this issue?



























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/d/optout.


[JIRA] [extensible-choice-parameter] (JENKINS-22282) Extensible choice parameter greyed out in Internet Explorer

2014-03-25 Thread david_od...@yahoo.com (JIRA)














































David Odren
 updated  JENKINS-22282


Extensible choice parameter greyed out in Internet Explorer
















Screen Capture of grayed out box, screen capture of "About IE" and config.xml of job.





Change By:


David Odren
(25/Mar/14 3:20 PM)




Attachment:


JenkinsBug22282.zip



























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/d/optout.


[JIRA] [extensible-choice-parameter] (JENKINS-22282) Extensible choice parameter greyed out in Internet Explorer

2014-03-25 Thread david_od...@yahoo.com (JIRA)














































David Odren
 commented on  JENKINS-22282


Extensible choice parameter greyed out in Internet Explorer















I selected the job to build from the all menu, then clicked on "Build with Parameters" on the left.  The extensible choice paramter window is grey and too small to read the entire string.  When I click on the grey area, it does not expand to the list of choices that I can click on as it does in Chrome.  The version of IE I am using is 10.0.9200.16844  Please find screen captures and config.xml file in attachment.  I am seeing the problem as the build administrator as well as users seeing the problem.  



























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/d/optout.


[JIRA] [core] (JENKINS-17511) Option to disable download as zip in workspace

2014-03-25 Thread mani...@gmail.com (JIRA)














































Manivannan Selvaraj
 commented on  JENKINS-17511


Option to disable download as zip in workspace















+ 1 Vote



























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/d/optout.


[JIRA] [git] (JENKINS-21215) Git Plugin 2.0 clones partial git config file

2014-03-25 Thread gsaianv...@gmail.com (JIRA)














































Sai Anvesh Ganguri
 commented on  JENKINS-21215


Git Plugin 2.0 clones partial git config file















Any ideas on which version combination should I downgrade to to get this thing going for now?

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/d/optout.


[JIRA] [unity3d-plugin] (JENKINS-21610) Starting Unity with the flag -force-d3d9-ref doesn't work as intended

2014-03-25 Thread manuel.matsc...@stillalive-studios.com (JIRA)














































Manuel Matscher
 commented on  JENKINS-21610


Starting Unity with the flag -force-d3d9-ref doesnt work as intended















Hey lacostej

I tested several different batch files and commands and came to the conclusion, that the unity3d plugin is not the cause of the problem. While running the batch file from the desktop worked, using jenkins to run the same commands did not. As you can probably not fix this issue I'll close this thread and we will use the batch file for time being.

Thank you for your help



























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/d/optout.


[JIRA] [unity3d-plugin] (JENKINS-21610) Starting Unity with the flag -force-d3d9-ref doesn't work as intended

2014-03-25 Thread manuel.matsc...@stillalive-studios.com (JIRA)















































Manuel Matscher
 resolved  JENKINS-21610 as Fixed


Starting Unity with the flag -force-d3d9-ref doesnt work as intended
















not a bug caused by the plugin





Change By:


Manuel Matscher
(25/Mar/14 3:49 PM)




Status:


Reopened
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/d/optout.


[JIRA] [core] (JENKINS-22340) Cannot configure colums of 'All' view

2014-03-25 Thread y...@schli.ch (JIRA)














































Marc Günther
 created  JENKINS-22340


Cannot configure colums of All view















Issue Type:


Bug



Assignee:


Unassigned


Components:


core



Created:


25/Mar/14 3:56 PM



Description:


The 'All' view in Jenkins has no 'Edit View' menu, so you cannot edit it's columns, making it rather useless (unless you happen to like the default columns)




Project:


Jenkins



Priority:


Trivial



Reporter:


Marc Günther

























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/d/optout.


[JIRA] [core] (JENKINS-17825) Configure Job page makes IE10 crash down completely

2014-03-25 Thread james.neum...@highmark.com (JIRA)














































James Neumyer
 commented on  JENKINS-17825


Configure Job page makes IE10 crash down completely















I also experienced this issue.  I did find that when I switched IE to compatibility mode, I was able to view and modify the job configuration.

So it appears that when IE accesses a job configuration in compatibility mode, IE doesn't crash.  When you access a job configuration when not in compatibility mode, it crashes IE 10.



























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/d/optout.


[JIRA] [artifactory] (JENKINS-22341) Failure to connect to artifactory server break configuration page

2014-03-25 Thread nicolas.del...@gmail.com (JIRA)














































Nicolas De Loof
 created  JENKINS-22341


Failure to connect to artifactory server break configuration page















Issue Type:


Bug



Assignee:


yossis



Components:


artifactory



Created:


25/Mar/14 4:12 PM



Description:


When rendering config page, ArtifactoryMaven3NativeConfigurator.getVirtualRepositoryKeys run a synchronous request to repository host, when this one hung for various reasons, the page never render. This should rely on a async ajax call.




Project:


Jenkins



Priority:


Critical



Reporter:


Nicolas De Loof

























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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread jakub.czapli...@gmail.com (JIRA)














































Jakub Czaplicki
 commented on  JENKINS-21547


Add information to console log when a job is aborted by gerrit















From what we're seeing, a currently running job (triggered by gerrit) will be aborted when a new patchset is submitted.
Presumably the scheduled builds are cancelled as well, which make sense.



























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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread jakub.czapli...@gmail.com (JIRA)












































 
Jakub Czaplicki
 edited a comment on  JENKINS-21547


Add information to console log when a job is aborted by gerrit
















From what we're seeing, a currently running job (triggered by gerrit) will be aborted when a new patchset is submitted.
Presumably the scheduled builds are cancelled as well, which make sense.

And it indeed created the "Who aborted this and why?" kind of situation.



























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/d/optout.


[JIRA] [matrix] (JENKINS-22200) Matrix configurations links are wrong

2014-03-25 Thread br...@meneguello.com (JIRA)















































Bruno Meneguello
 resolved  JENKINS-22200 as Not A Defect


Matrix configurations links are wrong
















Change By:


Bruno Meneguello
(25/Mar/14 4:51 PM)




Status:


Open
Resolved





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/d/optout.


[JIRA] [core] (JENKINS-14713) Cancel permission is granted for users having build permission

2014-03-25 Thread ndesjard...@gmail.com (JIRA)














































Nicolas Desjardins
 commented on  JENKINS-14713


Cancel permission is granted for users having build permission















We just worked around this to keep people from inappropriately killing builds and messing up workspaces. We have Jenkins hosted behind nginx, so in the site config for jenkins, I added this directive:

  location ~ "/stop$" {
return 401;
  }

This will return 401 (unauthorized) for anyone attempting to stop a build.



























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/d/optout.


[JIRA] [git] (JENKINS-22342) Gitweb URL can be mangled (if it doesn't contain a path?)

2014-03-25 Thread a...@clucas.org (JIRA)














































Alan Clucas
 created  JENKINS-22342


Gitweb URL can be mangled (if it doesnt contain a path?)















Issue Type:


Bug



Affects Versions:


current



Assignee:


Nicolas De Loof



Components:


git



Created:


25/Mar/14 4:55 PM



Description:


With git plugin at b2a731e62272c93a60f7f45d9d3c5d3b1e57fa11 (so that repository browser URLs are saved) then the URL to our repository https://gerrit.company.local/gitweb?p=repo.git gets mangled to https://gerrit.company.local/gitweb/?p=repo.git. Note the extra slash after gitweb.

I believe this is introduced by the call to normalizeToEndWithSlash() which was done for some repository types prior to https://github.com/jenkinsci/git-plugin/commit/7abfafcf58addbce2c268dbfed1910a90d4fe2a3 but is now done for all repository types in GitRepositoryBrowser. This is wrong for our particular usage. I'm happy to create a patch to fix this for all repo types that didn't formerly do this if some knows that this is the right way forward.







Project:


Jenkins



Priority:


Major



Reporter:


Alan Clucas

























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/d/optout.


[JIRA] [extensible-choice-parameter] (JENKINS-22282) Extensible choice parameter greyed out in Internet Explorer

2014-03-25 Thread david_od...@yahoo.com (JIRA)














































David Odren
 commented on  JENKINS-22282


Extensible choice parameter greyed out in Internet Explorer















I have the same problem when following your steps.  However, the problem disappears as soon as "Editable" is left unchecked, and returns as soon as it is checked 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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread rin...@java.net (JIRA)














































rin_ne
 commented on  JENKINS-21547


Add information to console log when a job is aborted by gerrit















What is current build? Does it mean the build which is running on executor?

If so, it is also scheduled build.

1. Job schedules build.
2. Push build to queue.
3. Executor gets build from queue then run.



























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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread sschube...@gmail.com (JIRA)














































Sebastian Schuberth
 commented on  JENKINS-21547


Add information to console log when a job is aborted by gerrit















Yes, by "current build" I mean a build that is currently running on an executor (and is listed as "Building" in the "Build Executor Status" box). My understanding of "scheduled build" so far was that this refers to queued builds as listed in the "Build Queue" box only.

Even if my understanding of "scheduled build" was wrong, could the wording of the "Build Current Patches Only" option probably be made clearer like "If this is enabled, any running build for a previous patch set will be aborted and queued downstream jobs for the previous patch set will be cancelled"?



























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/d/optout.


[JIRA] [git] (JENKINS-21215) Git Plugin 2.0 clones partial git config file

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














































Mark Waite
 commented on  JENKINS-21215


Git Plugin 2.0 clones partial git config file















Sorry, but I don't have any ideas to offer for version combinations.

I've not yet done any detailed exploring of git submodules, so I don't have any context for the behaviors of the various versions.

You could review the bug reports to see which mention submodules, and see if there are specific combinations to avoid, but I don't have any reasonable recommendation for combinations which will work well for your use case.



























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/d/optout.


[JIRA] [gerrit-trigger] (JENKINS-21547) Add information to console log when a job is aborted by gerrit

2014-03-25 Thread rin...@java.net (JIRA)














































rin_ne
 commented on  JENKINS-21547


Add information to console log when a job is aborted by gerrit















If you have better wording, I recommend to create patch then pull request.
Unfortunately I'm not plugin owner but one of contributor.



























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/d/optout.


[JIRA] [git-client] (JENKINS-22343) JGitAPIImpl fails to show first revision

2014-03-25 Thread i.am.t...@gmail.com (JIRA)














































Andrey Baidarov
 created  JENKINS-22343


JGitAPIImpl fails to show first revision















Issue Type:


Bug



Affects Versions:


current



Assignee:


Nicolas De Loof



Attachments:


JGitTest.java



Components:


git-client



Created:


25/Mar/14 5:53 PM



Description:


JGitAPIImpl showRevision method running on first commit returns empty list.
To show it I attach JUnitTest. Is this behavior correct?




Project:


Jenkins



Priority:


Major



Reporter:


Andrey Baidarov

























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/d/optout.


[JIRA] [core] (JENKINS-17288) Packaging of spring-context-support causes crowd plugin to prevent Jenkins starting properly

2014-03-25 Thread y...@schli.ch (JIRA)














































Marc Günther
 commented on  JENKINS-17288


Packaging of spring-context-support causes crowd plugin to prevent Jenkins starting properly















And Crowd2-Plugin has severe perfomance issues (we tried it), so it's not an option either: JENKINS-16703



























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/d/optout.


[JIRA] [mercurial] (JENKINS-15806) Exit code of `hg pull` not checked

2014-03-25 Thread a...@aps.anl.gov (JIRA)














































Andrew Johnson
 reopened  JENKINS-15806


Exit code of `hg pull` not checked
















Since upgrading to 1.50, when my jobs get triggered for any reason other than a commit to the repository (e.g. an upstream trigger or a manual build) they get failed by the Mercurial plugin because the hg pull found no changes:


Started by user Andrew Johnson
[EnvInject] - Loading node environment variables.
Building on master in workspace /var/lib/jenkins/jobs/epics-pvaPy/workspace
[workspace] $ hg showconfig paths.default
[workspace] $ hg pull --rev default
pulling from http://hg.code.sf.net/p/epics-pvdata/pvaPy
no changes found
ERROR: Failed to pull
ERROR: Failed to pull
[WARNINGS] Skipping publisher since build result is FAILURE
Sending e-mails to: a...@aps.anl.gov
Notifying upstream projects of job completion
Finished: FAILURE



To get them to build in this state I have to wipe out the work-space so they get cloned again. This is a major problem which I'm pretty sure this change was responsible for, so I will be reverting to 1.49.





Change By:


Andrew Johnson
(25/Mar/14 6:11 PM)




Resolution:


Fixed





Status:


Resolved
Reopened





Assignee:


ReneKroon
JesseGlick



























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/d/optout.


[JIRA] [msbuild] (JENKINS-22344) Command Line Arguments: /p:PublishFolder does not work with UNC format to publish to remote server

2014-03-25 Thread wei.zh...@ds-iq.com (JIRA)














































Wei Zhang
 created  JENKINS-22344


Command Line Arguments: /p:PublishFolder does not work with UNC format to publish to remote server















Issue Type:


Bug



Assignee:


kdsweeney



Components:


msbuild



Created:


25/Mar/14 7:10 PM



Description:


 I set the parameter of PublishFolder to a centralized share as /p:PublishFolder="\\RemoteServerName\OfficialBuilds\Published\, but I got "\RemoteServerName\OfficialBuilds\Published\" in my MSBuild build file. Obviously, one backslash was dropped by the MSBuild plugin. 

If I changed the setting to /p:PublishFolder="\\\RemoteServerName\OfficialBuilds\Published\, the right share folder path of "\\RemoteServerName\OfficialBuilds\Published\" was transferred to my MSBuild build file




Due Date:


31/Mar/14 12:00 AM




Project:


Jenkins



Priority:


Major



Reporter:


Wei Zhang

























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/d/optout.


[JIRA] [disk-usage] (JENKINS-22345) disk-usage-plugin causes jobs to hang at the end for 5min

2014-03-25 Thread y...@schli.ch (JIRA)














































Marc Günther
 created  JENKINS-22345


disk-usage-plugin causes jobs to hang at the end for 5min















Issue Type:


Bug



Assignee:


Lucie Votypkova



Components:


disk-usage



Created:


25/Mar/14 7:37 PM



Description:


We noticed the following strange behaviour on quite a lot of our jobs.

After all build steps and post build steps finished, the build is in some quite inconsistent state for up to exactly 5min:

	the Console is still spinning with no output
	the big ball of the job is still blinking
	starting the job again results in "current job is already building"
ALTHOUGH
	the build is shown as finished in the build history of the job
	it has disappeared from the slave it was running on



I especially liked the build history, when you start a new build #128, it says, build #127 is still in progress, and right below you see a quite finished build #127 

We double checked enabling and disabling the disk-usage-plugin, and it was clearly causing this issue. The 5min are probably some kind of timeout somewhere.




Project:


Jenkins



Priority:


Major



Reporter:


Marc Günther

























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/d/optout.


[JIRA] [crowd2] (JENKINS-16703) Too many periodic requests to Crowd server

2014-03-25 Thread y...@schli.ch (JIRA)














































Marc Günther
 commented on  JENKINS-16703


Too many periodic requests to Crowd server















This renders the crowd2-plugin completely unusable. We had page load times of around 20sec, compared to ~1sec with the old crowd-plugin. We switched back to that one now.



























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/d/optout.


[JIRA] [cli] (JENKINS-22346) jenkins cli command with key fails with - java.io.EOFException

2014-03-25 Thread jonathan.chaun...@gmail.com (JIRA)














































Jonathan  Chauncey
 created  JENKINS-22346


jenkins cli command with key fails with - java.io.EOFException















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


cli



Created:


25/Mar/14 8:22 PM



Description:


This started with 1.556.


root@recipe-test-centos-64-x86-64 ~]# java -jar /tmp/kitchen/cache/jenkins-cli.jar -s http://recipe-test-centos-64-x86-64.vagrantup.com:8080 -i /tmp/kitchen/cache/jenkins-key help
Exception in thread "main" java.io.EOFException
	at java.io.DataInputStream.readBoolean(DataInputStream.java:244)
	at hudson.cli.Connection.readBoolean(Connection.java:94)
	at hudson.cli.CLI.authenticate(CLI.java:553)
	at hudson.cli.CLI._main(CLI.java:464)
	at hudson.cli.CLI.main(CLI.java:382)






Project:


Jenkins



Priority:


Major



Reporter:


Jonathan  Chauncey

























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/d/optout.


[JIRA] [crap4j] (JENKINS-22279) Crap4j plugin is not constructing URL properly on Jboss

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














































SCM/JIRA link daemon
 commented on  JENKINS-22279


Crap4j plugin is not constructing URL properly on Jboss















Code changed in jenkins
User: Daniel Lindner
Path:
 src/main/java/hudson/plugins/crap4j/CrapBuildResult.java
http://jenkins-ci.org/commit/crap4j-plugin/d6431ab28fa474c98443126f66364b5cb3394cb5
Log:
  Use configured server URL instead of resolved one. Fixes JENKINS-22279


Compare: https://github.com/jenkinsci/crap4j-plugin/compare/aebf5dfa6cb9...d6431ab28fa4




























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/d/optout.


[JIRA] [core] (JENKINS-22311) gerrit trigger can cause unwieldy build history when there are pending jobs

2014-03-25 Thread exgr...@gmail.com (JIRA)














































Eric Griswold
 commented on  JENKINS-22311


gerrit trigger can cause unwieldy build history when there are pending jobs















Looks like either or both. I keep trying to find a way to send this to core development. If it gets redirected back to you, please let me know what I'm doing wrong.



























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/d/optout.


[JIRA] [crap4j] (JENKINS-22279) Crap4j plugin is not constructing URL properly on Jboss

2014-03-25 Thread dlind...@java.net (JIRA)














































dlindner
 commented on  JENKINS-22279


Crap4j plugin is not constructing URL properly on Jboss















I've attached a fixed version of the plugin to this issue. Can you try it out and give feedback? If the problem is solved, I will release a new 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/d/optout.


[JIRA] [crap4j] (JENKINS-22279) Crap4j plugin is not constructing URL properly on Jboss

2014-03-25 Thread dlind...@java.net (JIRA)














































dlindner
 updated  JENKINS-22279


Crap4j plugin is not constructing URL properly on Jboss
















Test version with fixed url





Change By:


dlindner
(25/Mar/14 8:40 PM)




Attachment:


crap4j.hpi



























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/d/optout.


[JIRA] [mercurial] (JENKINS-15806) Exit code of `hg pull` not checked

2014-03-25 Thread jgl...@cloudbees.com (JIRA)















































Jesse Glick
 resolved  JENKINS-15806 as Fixed


Exit code of `hg pull` not checked
















@anjohnson please file any follow-up issues separately and link to the original bug fix. Generally reopening an issue should be reserved for the case that the fix somehow missed correcting the original problem at all.

In this case the problem is likely that you have an older Mercurial installation which improperly reports a nonzero exit status when pull has nothing to pull. Upgrade it.





Change By:


Jesse Glick
(25/Mar/14 8:47 PM)




Status:


Reopened
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/d/optout.


[JIRA] [core] (JENKINS-22347) Allow Jenkins to download JDK8

2014-03-25 Thread lar...@gmail.com (JIRA)














































Larry Shatzer, Jr.
 created  JENKINS-22347


Allow Jenkins to download JDK8















Issue Type:


Bug



Assignee:


Unassigned


Components:


core



Created:


25/Mar/14 9:10 PM



Description:


Oracle now has a new cookie they use. 

See http://stackoverflow.com/questions/10268583/how-to-automate-download-and-instalation-of-java-jdk-on-linux





Project:


Jenkins



Priority:


Major



Reporter:


Larry Shatzer, Jr.

























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/d/optout.


[JIRA] [core] (JENKINS-22347) Allow Jenkins to download JDK8

2014-03-25 Thread lar...@gmail.com (JIRA)















































Larry Shatzer, Jr.
 resolved  JENKINS-22347 as Fixed


Allow Jenkins to download JDK8
















Fixed and merged in with https://github.com/jenkinsci/jenkins/pull/1165





Change By:


Larry Shatzer, Jr.
(25/Mar/14 9:10 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/d/optout.


[JIRA] [crap4j] (JENKINS-22279) Crap4j plugin is not constructing URL properly on Jboss

2014-03-25 Thread pavel.s...@cra-arc.gc.ca (JIRA)














































Pavel Saab
 commented on  JENKINS-22279


Crap4j plugin is not constructing URL properly on Jboss















I've tested the attached fix and the problem has been solved.

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/d/optout.


[JIRA] [other] (JENKINS-17033) Debian Repository doesn't contain previous versions of Jenkins

2014-03-25 Thread zhirafo...@gmail.com (JIRA)














































Sergey Sergeev
 commented on  JENKINS-17033


Debian Repository doesnt contain previous versions of Jenkins















The problem is that the Packages.gz package contain only latest version. 

wget 'http://pkg.jenkins-ci.org/debian/binary/Packages.gz' -O /var/tmp/Packages.gz
zcat /var/tmp/Packages.gz
Package: jenkins
Priority: extra
Section: devel
Installed-Size: 65795
Maintainer: Kohsuke Kawaguchi k...@kohsuke.org
Architecture: all
Version: 1.556
Replaces: hudson
Depends: daemon, adduser, psmisc, default-jre-headless | java-runtime-headless
Conflicts: hudson
Filename: binary/jenkins_1.556_all.deb
Size: 61229082
MD5sum: c3131e52fcd9e9157aab681f44800a4d
SHA1: d3544551374137432608d3e31d7cc68cab5f031b
SHA256: 73e220997aec0ed48982ba803f6fa0e60fa4143a837cb0111fac448f8b7b7cb0
SHA512: f3642cb26def332feeb63cfc12dd919625eba9778c66ba08f23f12c0de05abf704c949016ea65c204087b1e83dd3b49e1463544747b5a8b1230df90969bd32b0
Description: continuous integration system
 Jenkins is an application that monitors executions of repeated jobs,
 such as building a software project or jobs run by cron.
Homepage: https://jenkins-ci.org/


Most probably somewhere in the build shell script there is a command like 

sudo dpkg-scanpackages . /dev/null | gzip -9  Packages.gz


If that command is run incrementally, it should be  Packages.gz. Or it should be run in the directory where all packages are located (can take some time). Let me know if I can help fixing it. 



























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/d/optout.


[JIRA] [join] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-03-25 Thread sdrot...@gmail.com (JIRA)














































Steve Roth
 created  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete















Issue Type:


Bug



Affects Versions:


current



Assignee:


mdonohue



Components:


join



Created:


25/Mar/14 9:53 PM



Description:


Using Jenkins 1.552 and Join Plugin 1.15, today we saw an intermittent NPE in Join plugin when the last child job completed, and the parent job was being notified of job completion.


...
No emails were triggered.
Notifying upstream build somejob #308 of job completion
All downstream projects complete!
FATAL: null
java.lang.NullPointerException
	at join.JoinAction$NoopLauncher.init(JoinAction.java:120)
	at join.JoinAction.checkPendingDownstream(JoinAction.java:92)
	at join.JoinAction.downstreamFinished(JoinAction.java:70)
	at join.JoinDependency.shouldTriggerBuild(JoinDependency.java:45)
	at hudson.tasks.BuildTrigger.execute(BuildTrigger.java:213)
	at hudson.model.AbstractBuild$AbstractBuildExecution.cleanUp(AbstractBuild.java:741)
	at hudson.model.Build$BuildExecution.cleanUp(Build.java:194)
	at hudson.model.Run.execute(Run.java:1715)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
	at hudson.model.ResourceController.execute(ResourceController.java:88)
	at hudson.model.Executor.run(Executor.java:231)






Project:


Jenkins



Priority:


Major



Reporter:


Steve Roth

























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/d/optout.


[JIRA] [other] (JENKINS-17033) Debian Repository doesn't contain previous versions of Jenkins

2014-03-25 Thread zhirafo...@gmail.com (JIRA)














































Sergey Sergeev
 commented on  JENKINS-17033


Debian Repository doesnt contain previous versions of Jenkins















correction, the steps to incrementally change Packages.gz for each new version are the following:
1. create an addition for a new version:

sudo dpkg-scanpackages . /dev/null | gzip -9  Packages.add

2.concatenate Packages.gz and the new version:

zcat /debian/binary/Packages.gz | cat - Packages.add | zgip -9  /debian/binary/Packages.gz


Please let me know if I can help fixing it, need that fix asap. 



























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/d/optout.


[JIRA] [join] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-03-25 Thread sdrot...@gmail.com (JIRA)














































Steve Roth
 updated  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete
















shows how upstream job was configured to use join plugin





Change By:


Steve Roth
(25/Mar/14 9:55 PM)




Attachment:


joinPlugin1.png





Attachment:


joinPlugin2.png



























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/d/optout.


[JIRA] [core] (JENKINS-17288) Packaging of spring-context-support causes crowd plugin to prevent Jenkins starting properly

2014-03-25 Thread clement.bill...@backelite.com (JIRA)














































Clément Billiot
 commented on  JENKINS-17288


Packaging of spring-context-support causes crowd plugin to prevent Jenkins starting properly















You should use jenkins with tomcat and not with the embedded jetty, it has worked for us.



























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/d/optout.


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

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














































Daniel Beck
 commented on  JENKINS-21989


ReverseProxySetupMonitor broken in Jenkins release 1.552















Here's a great test case: Access Jenkins directly, not through the reverse proxy. If it works without this message showing up, your reverse proxy is broken.

If you use Apache as reverse proxy, it needs to be at least 2.2.18 and set the option AllowEncodedSlashes NoDecode (earlier versions only have values On and Off, both of which are wrong); as well as nocanon in the ProxyPass directive.



























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/d/optout.


[JIRA] [parameterized-trigger] (JENKINS-22212) No e-mail sent after failed build triggered from another build

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














































ikedam
 commented on  JENKINS-22212


No e-mail sent after failed build triggered from another build















Fingerprint Plugin helps you!: https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin
It provides "Fingerprint files" in "Build" step.

2 repositories invalidates ${SVN_REVISION}. Instead you should get revisions with ${SVN_REVISION_1} or ${SVN_REVISION_2}.



























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/d/optout.


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

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












































 
Daniel Beck
 edited a comment on  JENKINS-21989


ReverseProxySetupMonitor broken in Jenkins release 1.552
















Here's a great test case: Access Jenkins directly, not through the reverse proxy. If it works without this message showing up, your reverse proxy is broken.

If you use Apache as reverse proxy, it needs to be at least 2.2.18 and set the option AllowEncodedSlashes NoDecode (earlier versions only have values On and Off, both of which are wrong); as well as nocanon in the ProxyPass directive.

Both need to be set within the VirtualHost, as AllowEncodedSlashes isn't inherited.



























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/d/optout.


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

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












































 
Daniel Beck
 edited a comment on  JENKINS-21989


ReverseProxySetupMonitor broken in Jenkins release 1.552
















Here's a great test case: Access Jenkins directly, not through the reverse proxy. If it works without this message showing up, your reverse proxy is broken.

If you use Apache as reverse proxy, it needs to be at least 2.2.18 and set the option AllowEncodedSlashes NoDecode (earlier versions only have values On and Off, both of which are wrong); as well as nocanon in the ProxyPass directive.

Both need to be set within the VirtualHost, as AllowEncodedSlashes isn't inherited.

Example:

VirtualHost *:80
AllowEncodedSlashes NoDecode
ServerName build.example.org
ProxyPass /  http://localhost:8080/ nocanon
ProxyPassReverse  /  http://localhost:8080/
ProxyRequests Off
/VirtualHost




























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/d/optout.


  1   2   >