Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-28 Thread Tom Fennelly
every time. Assuming it is, I'd still wonder if it's worth leaving the explicit -Xmx setting on surfire because, as I said in the original email, I was getting the very occasional OOM error on that same test so it seems borderline anyway. Removing that layoutUpdateCallback.call() call didn't

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-27 Thread Tom Fennelly
the explicit -Xmx setting on surfire because, as I said in the original email, I was getting the very occasional OOM error on that same test so it seems borderline anyway. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-24 Thread oliver gondža
On Tue, 24 Jun 2014 01:14:04 +0200, Tom Fennelly tom.fenne...@gmail.com wrote: After making a series of Jelly script changes, I'm now getting regular OOM failures from AbstractProjectTest.testConfiguringBlockBuildWhenUpstreamBuildingRoundtrip (in the test harness) Here's the branch

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-24 Thread Ulli Hafner
I think setting the minimum memory to Xmx256 is ok. Am 24.06.2014 um 08:39 schrieb oliver gondža ogon...@gmail.com: On Tue, 24 Jun 2014 01:14:04 +0200, Tom Fennelly tom.fenne...@gmail.com wrote: After making a series of Jelly script changes, I'm now getting regular OOM failures from

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-24 Thread Tom Fennelly
Yeah, I think it's just a simple case of these changes blowing the memory profile of the test over the edge of what's available to the vm. As I said... I saw a few random failures on this test in the last week. I'll pull that change out into a separate fix. -- You received this message

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-24 Thread Tom Fennelly
Sorry... here's the trace... java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Arrays.java:2734) at java.util.Vector.ensureCapacityHelper(Vector.java:226) at java.util.Vector.addElement(Vector.java:573) at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.addNode(DOM2DTM.java:246) at

Re: OutOfMem error from test harness test after Jelly changes ??

2014-06-24 Thread Jesse Glick
On Tue, Jun 24, 2014 at 4:19 AM, Tom Fennelly tom.fenne...@gmail.com wrote: at com.gargoylesoftware.htmlunit.javascript.host.html.HTMLCollection.computeElements(HTMLCollection.java:249) at com.gargoylesoftware.htmlunit.javascript.host.html.HTMLCollection.getElements(HTMLCollection.java:236)

OutOfMem error from test harness test after Jelly changes ??

2014-06-23 Thread Tom Fennelly
Hi. After making a series of Jelly script changes, I'm now getting regular OOM failures from AbstractProjectTest.testConfiguringBlockBuildWhenUpstreamBuildingRoundtrip (in the test harness) Here's the branch https://github.com/tfennelly/jenkins/tree/icons-via-css. I can solve by setting

Error when upgrading Jenkins through Tomcat Manager App

2014-06-03 Thread Tonni Tielens
We're upgrading Jenkins through the Tomcat Manager App. Everytime we do this, afterwards we get an error and we need to restart the server in order for Jenkins to work again. Could you please suggest on this issue : Currently v1.555 is installed on our server, while version v1.557

Getting error after deploying hpi in jenkins for the maven dependency mansion-cloud

2014-04-14 Thread Hema Latha
Hi, I added mansion-cloud in my pom.xml of my jenkins project. The hpi is creating. But after deploying hpi in jenkins , i am getting below error while starting the server, java.io.IOException: Dependency mansion-cloud (1.18) doesn't exist

Getting error after deploying hpi in jenkins for the maven dependency mansion-cloud

2014-04-14 Thread Hema Latha
/dependency dependency groupIdcom.cloudbees.jenkins.plugins/groupId artifactIdmansion-cloud/artifactId version1.18/version /dependency /dependencies /project The hpi is creating. But after deploying hpi in jenkins , i am getting below error while starting the jenkins server, SEVERE: Failed

Error updating plugin

2014-02-21 Thread Daniel Anechitoaie
Hi, I have a plugin that uses BouncyCastle and the issue is that every time i try to update it by uploading a new version i get the following error: java.io.IOException: Failed to dynamically deploy this plugin at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1304

Re: Error updating plugin

2014-02-21 Thread Jesse Glick
You need to restart Jenkins to update a plugin. (Jenkins should not even offer the option to call dynamicLoad in this case; Daniel Beck had a PR for this, which IIRC was merged recently.) -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To

Re: Error updating plugin

2014-02-21 Thread Daniel Anechitoaie
I uploaded the new version from the Advanced section (Jenkins Plugin Manager Advanced) and there is no option there to chose how to instal it (with or without restart). On Friday, February 21, 2014 5:04:42 PM UTC+2, Jesse Glick wrote: You need to restart Jenkins to update a plugin. (Jenkins

Re: Error updating plugin

2014-02-21 Thread Daniel Beck
On 21.02.2014, at 16:04, Jesse Glick jgl...@cloudbees.com wrote: Daniel Beck had a PR for this PR 1125[1] just hides the button on the 'Updates' tab, because it won't work anyway. 1: https://github.com/jenkinsci/jenkins/pull/1125 -- You received this message because you are subscribed to

Re: Error building Jenkins (master + stable branch) because of license plugin

2013-10-07 Thread Jesse Glick
On Sat, Oct 5, 2013 at 7:02 AM, Christoph Kutzinski ku...@gmx.de wrote: [ERROR] Failed to execute goal com.cloudbees:maven-license-plugin:1.7:process (default) on project maven-plugin: The following dependencies are missing license information: [ERROR] javax.annotation:jsr250-api:1.0

Error building Jenkins (master + stable branch) because of license plugin

2013-10-05 Thread Christoph Kutzinski
Again, some error when trying to build - this is really eating up some time and lowering my motivation to invest time to fix bugs. IANAL, so I have really difficulties to understand why this license check is needed - at east in every build. Can't we put it into a profile which is only executed

Re: Error building Jenkins (master + stable branch) because of license plugin

2013-10-05 Thread domi
+1 On 05.10.2013, at 13:02, Christoph Kutzinski ku...@gmx.de wrote: Again, some error when trying to build - this is really eating up some time and lowering my motivation to invest time to fix bugs. IANAL, so I have really difficulties to understand why this license check is needed

Re: release:prepare error: Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93

2013-09-05 Thread Ulli Hafner
Did you specify the Jenkins maven repository in you .m2 settings? Am 05.09.2013 um 00:11 schrieb Andrew McSherry a...@hall-inc.com: I've been getting the error Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93 or one of its dependencies could not be resolved

Re: release:prepare error: Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93

2013-09-05 Thread Andrew McSherry
settings? Am 05.09.2013 um 00:11 schrieb Andrew McSherry an...@hall-inc.comjavascript: : I've been getting the error Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93 or one of its dependencies could not be resolved: Could not find artifact org.jenkins

Re: release:prepare error: Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93

2013-09-05 Thread Andrew McSherry
-SettingUpEnvironment On Thursday, September 5, 2013 12:51:24 AM UTC-7, Ullrich Hafner wrote: Did you specify the Jenkins maven repository in you .m2 settings? Am 05.09.2013 um 00:11 schrieb Andrew McSherry an...@hall-inc.com: I've been getting the error Unresolveable build extension: Plugin org.jenkins

release:prepare error: Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93

2013-09-04 Thread Andrew McSherry
I've been getting the error Unresolveable build extension: Plugin org.jenkins-ci.tools:maven-hpi-plugin:1.93 or one of its dependencies could not be resolved: Could not find artifact org.jenkins-ci.tools:maven-hpi-plugin:jar:1.93 in central (http://repo.maven.apache.org/maven2) while running

Re: Jenkow plugin: error importing with EGit

2013-08-13 Thread Vincenzo Caselli
-jenkins-for-git https://help.github.com/articles/error-permission-denied-publickey http://developer-blog.cloudbees.com/2012/10/using-ssh-from-jenkins.html http://funkaoshi.com/blog/could-not-open-a-connection-to-your-authentication-agent http://openskill.info/infobox.php?ID=1359 http

Jenkow plugin: error importing with EGit

2013-08-12 Thread Vincenzo Caselli
the administrator git repo URI (e.g. ssh://localhost:51565/jenkow-r­epository.git) into the Dialog and answering Yes to the SSH Acknowlegment popup I get this error: Read time out after 30.000 ms Please check Network Connection settings - SSH2 Eclipse preferences I use EGit regularly, so I have

Error while using vagrant plugin, It doesn't work

2013-07-15 Thread Vishnu Nair
I install vagrant plugin in Jenkins (ubuntu12.04) and when I try to build, I am getting the below errors. Started by user anonymous Building in workspace /var/lib/jenkins/jobs/testvagrant/workspace Running Vagrant with version: 1.0.2.dev FATAL: (ArgumentError) wrong number of arguments

[BUG] ERROR: Unexpected error in launching a slave.

2013-07-09 Thread Zhouping Liu
03:02:43] [SSH] Copying latest slave.jar... [07/09/13 03:02:52] [SSH] Copied 326,561 bytes. Expanded the channel window size to 4MB [07/09/13 03:02:52] [SSH] Starting slave process: cd '/home/jenkins' java -jar slave.jar ===[JENKINS REMOTING CAPACITY]===ERROR: Unexpected error in launching

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
level. Here are the regex strings for the original IarParser and the new one that I wrote. IarParser: private static final String IAR_WARNING_PATTERN = ^\(.*?)\,(\\d+)\\s+( + ERROR + OR + REMARK + OR + WARNING + OR + FATAL_ERROR + )\\[(\\w+)\\]: (.*)$; Mine: private static final

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Thanks for the info Baptiste. It will come in handy when I get to the point when I need to commit my work. I still have some design issues to sort out first. On Tue, May 14, 2013 at 11:40 AM, Baptiste Mathus bmat...@gmail.com wrote: Hi, You're on the right track :). Here's the typical

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Slide, Thanks for the tip. I started out creating a parser this way, but I didn't like the way the warnings were reported back to the build (graphs, etc). It was likely because I didn't have the groovy script passing all the info that was needed. I like the idea of incorporating the change into

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ulli Hafner
level. Here are the regex strings for the original IarParser and the new one that I wrote. IarParser: private static final String IAR_WARNING_PATTERN = ^\(.*?)\,(\\d+)\\s+( + ERROR + OR + REMARK + OR + WARNING + OR + FATAL_ERROR + )\\[(\\w+)\\]: (.*)$; Mine: private

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
that I wrote. IarParser: private static final String IAR_WARNING_PATTERN = ^\(.*?)\,(\\d+)\\s+( + ERROR + OR + REMARK + OR + WARNING + OR + FATAL_ERROR + )\\[(\\w+)\\]: (.*)$; Mine: private static final String IAR_WARNING_PATTERN = ^(.*?)\\((\\d+)\\)\\s

Re: Warnings parser - writing a new error parser

2013-05-14 Thread Slide
The warnings plugin provides the ability to create new parsers via script in the global config. This is how I've always added parsers. For internal build tools it's nice because I don't have to maintain my own plugin for the parsing, I can just tweak a script. slide On Tue, May 14, 2013 at 7:40

Re: Warnings parser - writing a new error parser

2013-05-14 Thread Baptiste Mathus
Hi, You're on the right track :). Here's the typical way/steps to proceed: * find or create the corresponding issue in JIRA for reference * fork the plugin in your github account (if not already done) * clone it locally (if not done) * create a dedicated branch * Create a commit in that branch

Re: Warnings parser - writing a new error parser

2013-05-14 Thread Ulli Hafner
How large are the differences between the two warning formats? If they are small I would prefer having just a single parser. This make things easer for the user, because there is just one selection possible for IAR. Maybe we can combine the 2 expressions into one that matches both. Otherwise

Aw: Compiling subversion-plugin, question about compilation error

2013-04-17 Thread Christoph Kutzinski
An:jenkinsci-dev@googlegroups.com Betreff:Compiling subversion-plugin, question about compilation error Hi, Im attempting to compile subversion-plugin (https://github.com/jenkinsci/subversion-plugin) using the Plugin tutorial (https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial), and Im

Re: Compiling subversion-plugin, question about compilation error

2013-04-17 Thread Kenny Ayers
* be the problem. *Gesendet:* Mittwoch, 17. April 2013 um 04:55 Uhr *Von:* Kenny Ayers theother...@gmail.com javascript: *An:* jenkin...@googlegroups.com javascript: *Betreff:* Compiling subversion-plugin, question about compilation error Hi, I'm attempting to compile subversion-plugin ( https

Compiling subversion-plugin, question about compilation error

2013-04-16 Thread Kenny Ayers
from the compilation step: $ mvn -e install + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] [INFO] Building Jenkins Subversion Plug-in [INFO]task-segment: [install] [INFO

Jenkins show error each time try to execute any job to run my test cases on Sauce Labs

2013-02-07 Thread Rami Saleem
Jenkins show error each time try to execute any job to run my test cases on Sauce Labs [image: Failed]Console Output Started by user anonymous http://localhost:8080/user/null Building in workspace C:\Program Files\Jenkins\jobs\testplus\workspace Checkout:workspace / C:\Program Files\Jenkins

Fwd: FW: Error while using conditional build step plugin

2012-11-19 Thread alok kumar
Hi, I am facing the following problem while trying to use conditional build step plugin. As a result of this, Jenkins fails to start. If I remove this plugin from the plugins folder and restart Jenkins, it starts without any issues. I already have the dependent plugins i.e. run

Re: FW: Error while using conditional build step plugin

2012-11-19 Thread Jason Swager
Likewise. Is there a JIRA issue opened for this that we can upvote? On Monday, November 19, 2012 5:32:43 AM UTC-8, alok kumar wrote: Hi, I am facing the following problem while trying to use conditional build step plugin. As a result of this, Jenkins fails to start. If I

Re: Error while using conditional build step plugin

2012-11-19 Thread domi
can you give me some more context information about it? e.g. - which version of the conditional-buildstep plugin are you running? - what kind of steps did you configure? - when does does the error occur? every time? Domi On 19.11.2012, at 14:32, alok kumar alok.kuma...@gmail.com wrote: Hi

Re: Error while using conditional build step plugin

2012-11-19 Thread alok kumar
Hi, I am using the latest version of the plugin i.e. 1.2.1 I havent yet conigured any steps as this error occurs soon after I try to start jenkins after adding this plugin. This occurs every time and as soon as I remove this plugin from the plugins folder and restart jenkins, everything gets back

Clang compiler warning and error parser?

2012-11-15 Thread McHalls
Hi, Looking at the warnings plugin, it seems it does not support parsing of the output of Clang. Are there plans to have it as a plugin parser? I'd like to avoid writing regexps for all possible output formats and I'm guessing I may not be the only one who would benefit from it. McHalls

Re: Clang compiler warning and error parser?

2012-11-15 Thread Ulli Hafner
I have no such plans yet. If you are interested in adding a new parser please let me know. Or even better: provide a pull request that could be merged into the plug-in. Ulli Am 15.11.2012 um 13:18 schrieb McHalls mchal...@gmail.com: Hi, Looking at the warnings plugin, it seems it does

Re: Error in compiling Jenkins for Eclipse

2012-11-02 Thread Ulli Hafner
/Building+Jenkins. But after step $ mvn -DdownloadSources=true eclipse:eclipse I get next error: [INFO] [INFO] [INFO] Building Jenkins UI sample plugin 1.490-SNAPSHOT [INFO

Re: ERROR: Could not send email as a part of the post-build

2012-10-11 Thread hitesh kumar
Phone From: hitesh kumar Sent: 10/10/2012 10:23 PM To: jenkinsci-dev@googlegroups.com; slide.o@gmail.com Cc: jenkinsci-us...@googlegroups.com Subject: Re: ERROR: Could not send email as a part of the post-build publishers. Thanks Slide for reply. i am using email ext-2.22 is latest

Re: ERROR: Could not send email as a part of the post-build publishers.

2012-10-10 Thread Slide
config:* -matrix job -Variants 1 2 3 -select Trigger for each configuration at editable email Notification. *ISSUE :one of variant job is not sending mail and generating below issue: other variant jobs are sending mails.* ERROR: Could not send email as a part of the post-build publishers

Re: ERROR: Could not send email as a part of the post-build publishers.

2012-10-10 Thread hitesh kumar
Thanks Slide for reply. i am using email ext-2.22 is latest 2.24.1 having fix of it??? as per https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin below raised issue already should be fixed in 2.19 version. - JENKINS-12047 https://issues.jenkins-ci.org/browse/JENKINS-12047 ERROR

Getting one error while packaging the code of sample plugin

2012-09-16 Thread punit jain
Hi all, i am trying to compile the same plugin from here https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial . but getting one error, here is the stack trace: C:\maven\punitmvn package -e [INFO] Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] [INFO

Error occurring while loading a large view in Jenkins using IE

2012-09-06 Thread neels
Hello, I am getting some error stating Stop running this script? A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer might become unresponsive while loading a large view in Jenkins using IE. This is browser specific and only reproducible

Re: Jenkins Synergy Plugin - Packaging error

2012-09-04 Thread Angela Kim
here as well? Thanks! On Fri, Aug 31, 2012 at 5:01 PM, Jesse Glick jgl...@cloudbees.com wrote: On Fri, Aug 31, 2012 at 1:39 PM, Angela Kim ssswis...@gmail.com wrote: [ERROR] 1 error: com.sun.mirror.apt.AnnotationProcessorFactory Probably you are using JDK 7, and the plugin is built against

RE: Jenkins Synergy Plugin - Packaging error

2012-09-04 Thread Sandell, Robert
@googlegroups.com Subject: Re: Jenkins Synergy Plugin - Packaging error I am running JDK 6: java version 1.6.0_33 Java(TM) SE Runtime Environment (build 1.6.0_33-b03) Java HotSpot(TM) Client VM (build 20.8-b03, mixed mode, sharing) When you refer to the parent section at the top of the pom.xml, you

Jenkins Synergy Plugin - Packaging error

2012-08-31 Thread Angela Kim
I have down loaded the newest zip files from GitHub for the Jenkins Synergy Plugin, dated 04/06/2012, and am trying to create the .hpi file using mvn package. Each time I run this command the following error message is received: [ERROR] Failed to execute goal org.jvnet.hudson.tools:maven-hpi

Re: still an error with installing plugins because of .nfs errors

2012-08-24 Thread Mark Waite
The wiki page https://wiki.jenkins-ci.org/display/JENKINS/Issue+Tracking describes how to submit a bug report. From: Peter Carr pc...@broadinstitute.org To: jenkinsci-dev@googlegroups.com Sent: Friday, August 24, 2012 2:19 PM Subject: still an error

Re: still an error with installing plugins because of .nfs errors

2012-08-24 Thread Mark Waite
that it prevents deletion of the directory? Mark Waite From: Peter Carr pc...@broadinstitute.org To: jenkinsci-dev@googlegroups.com Sent: Friday, August 24, 2012 2:19 PM Subject: still an error with installing plugins because of .nfs errors Still getting this error. How

Re: still an error with installing plugins because of .nfs errors

2012-08-24 Thread Peter Carr
-dev@googlegroups.com *Sent:* Friday, August 24, 2012 2:19 PM *Subject:* still an error with installing plugins because of .nfs errors Still getting this error. How do I file a bug report hudson.util.IOException2: Failed to dynamically deploy this plugin

Re: still an error with installing plugins because of .nfs errors

2012-08-24 Thread Peter Carr
Thanks for pointing this page out. I found a similar bug report, I'll add my comments there: https://issues.jenkins-ci.org/browse/JENKINS-12753 On 8/24/12 4:31 PM, Mark Waite wrote: The wiki page https://wiki.jenkins-ci.org/display/JENKINS/Issue+Tracking describes how to submit a bug

Re: still an error with installing plugins because of .nfs errors

2012-08-24 Thread Mark Waite
24, 2012 3:13 PM Subject: Re: still an error with installing plugins because of .nfs errors It is a bug in jenkins, albeit, a very subtle one. I'll bet you a beer it is. NFS does temporarily put the .nfs files on the filesystem. However, it is Jenkins which fails to account for this possibility

FW: [hudson-dev] Error building‎

2012-07-31 Thread Kenneth Miller
on the installation instructions for the war deployment). I get an exception when I try to build that is completely unrelated to my maven configuration (pom.xml/whatever) or project, because it fails due to class not found error. I'm wondering if I should fail back to the stable version of Hudson or if I should

Re: FW: [hudson-dev] Error building‎

2012-07-31 Thread Vojtech Juranek
Hi, first, jenkins-users mailing list would be more appropriate for such kind of problems. Secondly, it's hard to give any hints if we know just that there is some error during the build. In general, if you are able to build the project with open-jdk, you should be able to build it with opne

Re: Re: FW: [hudson-dev] Error building‎

2012-07-31 Thread Vojtech Juranek
Ops, I didn't note that bellow is link to the error - it's a class loading problem. If you build it with jenkins, do you run into the same problem? It seems to me, that this is Hudson specific issue On Tuesday 31 July 2012 12:37:34 Vojtech Juranek wrote: Hi, first, jenkins-users mailing list

Re: Help debugging FileUtils error

2012-05-17 Thread Daniel Doubrovkine
can't find where to require fileutils to fix the error. Here's the console output: Started by user anonymous Building remotely on beta_ci in workspace /data/jenkins-slave/ workspace/hls Checkout:hls / /data/jenkins-slave/workspace/hls - hudson.remoting.Channel@163c45:beta_ci Using strategy

Help debugging FileUtils error

2012-05-08 Thread Nicole
I'm new to using Jenkins, and I'm currently installing it with Rails, Engineyard and Chef. I haven't been able to make a successful build and I'm having a hard time knowing what to debug. I can't find where to require fileutils to fix the error. Here's the console output: Started by user

Error adding a column to ListView

2012-03-16 Thread David Mata
Hi. I'm trying to add a new JobTypeColumn to a ListView. I receive the column type via REST and I have to add the new column to a view. listView.getColumns().add((ListViewColumn)Class.forName(hudson.plugins.jobtype_column.JobTypeColumn).newInstance()); This sentence throws

<    1   2   3   4   5