Re: A svn credentials question

2014-11-21 Thread Jan Seidel
Remove the --force-interactive That forces user input like username, then password no matter if you have stored the credentials or not -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop receiving emails

Re: A svn credentials question

2014-11-21 Thread Jan Seidel
Hi, would be nice to know which dialog is popping up. Try to run the command normal without fancy switches. If you use a command line svn client try the command straight away from the CLI in a DOS box. I assume it is asking you, if you want to add the server certificate. If you want to run it

Jenkins sporadically fails to check out

2014-11-20 Thread Jan Seidel
Hi folks, I am facing a weird issue and am about to run low on ideas. Let me show you the log output: *21:13:48* hudson.util.IOException2: revision check failed on http://svn.xxx/svn/xxx/trunk http://svn.ebgroup.elektrobit.com/svn/PASA_GM-ColorRadio_HMI_internal/trunk *21:13:48*at

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
:04:24 UTC+2 schrieb Gunnar Strand: On 09/19/14 11:27, Jan Seidel wrote: True (.*) is very greedy, but (?!P4) is a but not P4 and I would expect it to work. It isn't as I just figured out in a test run with a completely different RegEx to skim for other jobs :/ I don't know what

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
:44, Jan Seidel wrote: Yay, got it. A set of projects rules. each one containing a positve match and then combine the rule works well. One odd thing I learned is, that you don't need wildcards if your match has a trailing string. e.g. *MB**_GUIDE**_Pxxx_P4**_DELIVERY* will also

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
Nice advice! :) what does *?:* actually imply? Where do I find this information? If you want to allow that MIB can appear anywhere else other that immmediately after GUIDE_ you can change the regex for : (.*)GUIDE_(?!MIB)((?!P4).)*$ This pattern confuses me a bit... Ohh now I get it.

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
It works like a charm :) Thank you two for helping me out on this one. Jan Am Freitag, 19. September 2014 09:38:17 UTC+2 schrieb Jan Seidel: Hi all, I have a weird issue with a regular expression. Hopefully you can help me out here. I have a RegEx like *(.*)GUIDE_(?!MIB)(.*)(?!P4

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
Last but not least. Looks like Jenkins adheres to Java Regex, even if I sometimes doubted it. (?:*X*) *X*, as a non-capturing groupDoes this mean ... don't jump on this pattern? Sorry, I'm no developer :) -- You received this message because you are subscribed to the Google Groups Jenkins

Re: Jenkins and Perforce password issue

2014-09-22 Thread Jan Seidel
Is P4CHARSET set to winansi? Maybe you should write the P4PAASWD into a text file and inject it with env_inject. This would make the testing a bit easier. You can then find whitespace characters and have no encoding trouble with the password. If this works is your problem probably a matter of

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-22 Thread Jan Seidel
Thanks for the explanation :) The site you have mentioned is indeed a real nice one. It is already added to my bookmarks. Cheers Jan -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop receiving emails from

Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-19 Thread Jan Seidel
Hi all, I have a weird issue with a regular expression. Hopefully you can help me out here. I have a RegEx like *(.*)GUIDE_(?!MIB)(.*)(?!P4)* It should, as far as I can tell, list all jobs containing GUIDE but exclude GUIDE jobs with a MIB in the middle or P4 at the end of the project name,

Re: Expanding Parameters when triggering Jobs

2014-09-19 Thread Jan Seidel
${WORKSPACE} is dynamic. Job A and job B have their own defined workspace and will use different values. If you want job B to use the same you could pass the value as parameter like: ALT_WORKSPACE=${WORKSPACE} Am Dienstag, 16. September 2014 03:21:03 UTC+2 schrieb Brantone: Perhaps just not

Re: Expanding Parameters when triggering Jobs

2014-09-19 Thread Jan Seidel
https://lh4.googleusercontent.com/-4T5_n-5GX-g/VBvzo1dJLlI/CjA/ALPF_Bn5QoI/s1600/Untitled.png Ah, I got your point :) use the Predefined parameters opton. Then the variables will expand. See picture attached Am Dienstag, 16. September 2014 03:21:03 UTC+2 schrieb Brantone: Perhaps

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-19 Thread Jan Seidel
they need to know *geesh* Thanks for the hint. Jan Am Freitag, 19. September 2014 09:38:17 UTC+2 schrieb Jan Seidel: Hi all, I have a weird issue with a regular expression. Hopefully you can help me out here. I have a RegEx like *(.*)GUIDE_(?!MIB)(.*)(?!P4)* It should, as far as I can

Re: Issue with RegEx for project roles in Matrix Authorization Strategy Plugin

2014-09-19 Thread Jan Seidel
with *(.*)GUIDE_(.*)P4* You can by the way combine RegEx like this* (.*)GUIDE_MIB(.*)|(.*)GUIDE_(.*)P4 *the pipe | works well one positive matches. negative matches don't make fun with it Am Freitag, 19. September 2014 09:38:17 UTC+2 schrieb Jan Seidel: Hi all, I have a weird issue with a regular

Regex in securitybased role strategy

2014-07-22 Thread Jan Seidel
Hi friends, I am struggling with regular expressions and they drive me atm to Nutsville! There is a set of jobs and they look like this: GUIDE_DISPATCHER GUIDE_CB_xxx_P4 MB_GUIDE_HEAD MB_GUIDE_PAG_P4 MB_GUIDE_MIB_D_BILBAO I am now trying to remove the view of everything that either has an MIB

Build failure analyzer - HOWTO Multi-line build log indication

2014-05-20 Thread Jan Seidel
Hi *, we have some issue going on as we have a build user who syncs from an external source. So all commits in our repository are from the service user instead of the developer. But we need a way to unwrap this as we else always would have to do theis manually. That would cost one person

Role Strategy Plugin - how to apply multiple patterns in project roles

2013-10-11 Thread Jan Seidel
https://lh4.googleusercontent.com/-9ASiUVhzC9o/Ulff3Fb8QGI/CKU/9IfUQ2YfEC8/s1600/patterns.png Hi folks, I am setting up Role Strategy as too many people can peek and poke in too many jobs and mess around. We have many build jobs which leads me to a problem when assigning Roles in

Re: in-house mirrored update center is not working as expected...

2013-08-08 Thread Jan Seidel
I have found one thing that differs... The json file has a new wrapping length. The lines do not match exactly anymore even if the content still is ok. But Jenkins log says: *SEVERE: Failed to parse C:\Jenkins_mount_point\Jenkins\updates\default.json net.sf.json.JSONException: A JSONObject text

Re: in-house mirrored update center is not working as expected...

2013-08-08 Thread Jan Seidel
OK, i figured out that this is connected to the signature check which I want to get rid of anyways. As I learned was one nifty solution to add a file named *init.groovy* to JENKINS_HOME with the content: *try { // disable verification of signature of JSON file from update center

Promotions Plugin: Uploading wrong releases

2013-02-04 Thread Jan Seidel
Hi folks, I have loads of weird stuff going on since I chose to re-key the secret keys due to a security flaw :( Biggest flaw was obviously the re-keying... Since then do our promotions upload wrong releases. I don't know if it is related to the re-keying but it happened after that action. The

Re: Is it possible to let the jobs roam in a node cluster?

2013-01-21 Thread Jan Seidel
be able to make it a bit more comfy. Any ideas would still be appreciate though. Cheers Jan Am Donnerstag, 5. April 2012 11:59:07 UTC+2 schrieb Jan Seidel: Hi there, my question is already stated in the title as you can see :) I know that you can let jobs roam in a node cluster but can you let

Re: SVN checkout - specifying local module directory erases workspace

2012-12-18 Thread Jan Seidel
https://lh4.googleusercontent.com/-TITKrnWyRfs/UNCT_EOXkjI/Aic/apad37NLPko/s1600/checkout_strategy.png Hi Stuart, this sounds familiar... I fixed it but I'm not completely sure what it was as it is too long ago ;) My first guess would be that you use more than 1 repository. If so try it

Re: Archived Artifacts

2012-12-18 Thread Jan Seidel
Hi Nicky, is the comma set on purpose? dummy,tar.gz - look between dummy and tar Regards Jan Am Montag, 10. Dezember 2012 18:41:36 UTC+1 schrieb Nicky Ramone: Hello. I noticed that despite my configuration is defined so that no artifacts are archived, the artifacts are stored in the disk

Re: New to Jenkins, have 7 days to become an expert - wish me luck

2012-12-07 Thread Jan Seidel
Hello and welcome! Become a pro in 7 days is hell of demand :) I am working on a massive scale with Hudson/Jenkins for 2 years now and am still developing my skills as useful plugins emerge where I created some nasty scripting to find my way around. My environment is about to reach the final

Need help to find a plugin

2012-12-07 Thread Jan Seidel
Hi folks, I am looking for a certain plugin which allows to embed JScript or Java into the pages of Jenkins. AFAIR did I see a plugin that allowed to implement active scripts into the description of a build job or the like. Maybe you also now something better, so here is the explanation why I

Re: New to Jenkins - need help

2012-12-07 Thread Jan Seidel
Well, there is a plugin available that lets you define which changes may trigger and which not. That way should you always have a recent set of libraries available when starting a bulld. You can also use the join plugin if certain libraries must be built before the assembly build is spawned or

How to pass variable to an Ant build step from a previous batch build step

2012-07-20 Thread Jan Seidel
Hi folks, this is somewhat embarassing for me to ask as I thought I am past that level of expertise but I am facing a pretty basic problem. I have done research on this issue before addressing it here (of course) but still no joy. I have a batch build step followed by an Ant build step. The

Re: How to pass variable to an Ant build step from a previous batch build step

2012-07-20 Thread Jan Seidel
to env.properties then your Ant build step where the param shold be avaliable in the same way that the build parameters are. [1] https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin Chris On Friday, July 20, 2012 2:18:23 PM UTC+1, Jan Seidel wrote: Hi folks, this is somewhat

Re: Checkout the code from two repository without cleaning local directory

2012-07-18 Thread Jan Seidel
Ok, I am just dropping some creativity to the thread. Don't expect this to be thought to rock bottom. Considering 2 repositories are in use. First thought - I have to admit it is somewhat coarse - 2 jobs each polling its own repository. The jobs have a parametrized build trigger with a

Re: Jenkins slow after a few days and throwing exceptions all the time

2012-07-18 Thread Jan Seidel
Hi Jürgen, have you taken a look at D:\Programme\Jenkins\.\jobs\CI_DOPE_0102_Compile\builds\2012-06-29_15-33-05\changelog.xml ? Did you compare it with a changelog.xml of a previous build? Maybe it is corrupt and creates some bogus effect. Is the log alway complaining about the same build log

Re: Checkout from two repository using jenkins

2012-07-18 Thread Jan Seidel
Renny, consider next time to post something into your old thread to bring it back to top instead of creating a new thread with exactly the same content. You won't get more help by spamming rather the contrary ;) You will in most cases get an answer if the people have something to say. Check the

Re: Checkout the code from two repository without cleaning local directory

2012-07-17 Thread Jan Seidel
Hi Varghese, only solution I know of is to do an update yourself from shell/command line. It's no big deal. Not as nice as running the plugins but sometimes are you facing special situations which requires this kind of action. Take care Jan Am Dienstag, 17. Juli 2012 14:00:40 UTC+2 schrieb

Re: Concurrent build not concurrent

2012-07-16 Thread Jan Seidel
-trigger-plugin/tree/target-file/target Chris On Wednesday, July 11, 2012 10:33:06 AM UTC+1, Jan Seidel wrote: Never mind, seems that I have been mixing my memories up. Seems that it not is possible to keep dispatcher running and wait for the child job in multiple instances. Even if I

Re: Disabling hover/mouseover menus

2012-07-16 Thread Jan Seidel
*uhm* does it not require a plugin to have that feature? Am Mittwoch, 11. Juli 2012 16:49:19 UTC+2 schrieb rayn: Is there any way to turn these off? Quite annoying.

Re: Job failing on workspace cleanup....file is open....

2012-07-16 Thread Jan Seidel
Hi Jeff, maybe some process called by the build is hanging. Install Lockhunter, WhoLockMe or Systernal's Process Explorer on the Jenkins server, log on and check with one of these tools which process/handle is blocking. I did experience similar with folders until I discovered that an open

Re: HTTPS Subversion 1.7 and Jenkins - issuer not trusted

2012-07-16 Thread Jan Seidel
Hi Adam, Your server is already using a certificate, so this is nothing you have to worry about anymore in order to get Jenkins running ;) Install the server certificate on the machine running Jenkins in the trusted cert store. Note you may have to install it in various stores. - ssh to the

Re: Conditional Build Steps

2012-07-16 Thread Jan Seidel
AM UTC-6, Jan Seidel wrote: Hi Josh, what about https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Pluginor https://wiki.jenkins-ci.org/display/JENKINS/Retry+Failed+Builds+Plugin ? Am Freitag, 29. Juni 2012 21:49:44 UTC+2 schrieb Josh D: I have a parameterized job that has a number

Re: Is it called Project or is it called Job?

2012-07-16 Thread Jan Seidel
*uhm* Is it called Project or is it called Job? is it important? IMHO not ;) Am Montag, 16. Juli 2012 22:36:51 UTC+2 schrieb LesMikesell: On Mon, Jul 16, 2012 at 12:42 PM, Max Spring m2spr...@springdot.org wrote: IMO, project is a complete misnomer in Jenkins, because a project is

Concurrent build not concurrent

2012-07-11 Thread Jan Seidel
Hi folks, I am facing some funny (well...not) situation. My current project involves also some serious parallelization. There is one main job doing some unspectacular operations like string split and compare in order to decide via conditional build steps which job has to be launched. So I call

Re: Jenkins windows service keeps crashing/stopping

2012-07-11 Thread Jan Seidel
Hiya, you have to clear your eventlogs. The services stop if they can't log to the eventlogs any more. Windows Logo Button + R (for Run...) - eventvwr.msc [OK] - rightclick on each log category and delete the content. Have fun. Jan Am Dienstag, 3. Juli 2012 15:49:41 UTC+2 schrieb Chris

Re: Concurrent build not concurrent

2012-07-11 Thread Jan Seidel
far. Take care Jan Am Mittwoch, 11. Juli 2012 11:11:08 UTC+2 schrieb Jan Seidel: Hi folks, I am facing some funny (well...not) situation. My current project involves also some serious parallelization. There is one main job doing some unspectacular operations like string split and compare

Re: Is it possible to block a build job if another one is running which is not part of up- or downstream?

2012-07-03 Thread Jan Seidel
will run. -- Sami Jan Seidel wakkal...@gmail.com kirjoitti 28.6.2012 kello 13.41: Hi folks, I am trying to parallelize some of our builds to speed things up. This particular build is quite special as it also interacts with databases. Multiple write access on a database will wreck

Re: Conditional Build Steps

2012-07-03 Thread Jan Seidel
Hi Josh, what about https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Plugin or https://wiki.jenkins-ci.org/display/JENKINS/Retry+Failed+Builds+Plugin ? Am Freitag, 29. Juni 2012 21:49:44 UTC+2 schrieb Josh D: I have a parameterized job that has a number of dependencies that it copies

Re: Copy artifacts failure on Windows

2012-07-03 Thread Jan Seidel
Hi Chris, Caused by: hudson.util.IOException2 http://stacktrace.jenkins-ci.org/search?query=hudson.util.IOException2: remote file operation failed: C:\Jenkins\workspace\ at hudson.remoting.Channel@2b578c61:studio looks familiar to me. In my case is not the time stamp the issue but the

Re: Most of config sections are not available

2012-07-03 Thread Jan Seidel
Hiya, Does the Jenkins log not tell you anything? You could as first step move all plugin files, delete the respective folders in the plugins-folder and restart Jenkins. This would tell if a plugin is causing the problem. If this works simply move the plugins in smaller steps back to the

Re: Most of config sections are not available

2012-07-03 Thread Jan Seidel
You won't loose your config or build history on re-install if you do it as described. Save the configuration files from Jenkins, in doubt make a copy of the Jenkins root folder to a safe location. clear the root folder and the plugin folder *but don't touch the jobs folder*. The jobs folder

Re: Is it possible to block a build job if another one is running which is not part of up- or downstream?

2012-07-03 Thread Jan Seidel
help, or you might choose to dip into the workspaces directly, but be aware of the synchronization issue. -- Sami Jan Seidel kirjoitti 3.7.2012 kello 11.37: Ah! now I'm getting it :) yesnomaybe... The idea is not bad but I have to investigate if it is feasible

Re: Is it possible to block a build job if another one is running which is not part of up- or downstream?

2012-07-03 Thread Jan Seidel
are missing so I cannot activate it right now. Hopefully an update of the system will fix it. I'll keep you posted Jan Am Donnerstag, 28. Juni 2012 12:41:04 UTC+2 schrieb Jan Seidel: Hi folks, I am trying to parallelize some of our builds to speed things up. This particular build is quite special

I need to drop text from Jenkins into a text file before build

2012-06-28 Thread Jan Seidel
Hi folks, I need an option that allows me to drop special notes into a plain text file. This must happen before some Jenkins jobs start to run as that text will be pasted into release notes. It must handle hardcoded locations/filenames. In best case does each job have its own textarea/editor

Re: Job continually builds even though no SCM changes happened....

2012-06-26 Thread Jan Seidel
Hi Jeff, honestly, I don't see the problem... the plugin works as expected as far as I can tell from the revision numbers. Jenkins notices changes in the revision number which obviously is true. You should take a look at the SVN history log to see what is happening in the meantime. The plugin

Re: Job continually builds even though no SCM changes happened....

2012-06-26 Thread Jan Seidel
created new using the 1.472 version of Jenkins. On Tue, Jun 26, 2012 at 1:44 PM, Jan Seidel wakkal...@gmail.com wrote: Hi Jeff, honestly, I don't see the problem... the plugin works as expected as far as I can tell from the revision numbers. Jenkins notices changes in the revision number

Re: Re: running Jenkins on https

2012-06-26 Thread Jan Seidel
Proove my wrong but this is afaik a setting of IE to rpotect the user. You have by default a prompt for confirmation in IE if the content is mixed https/http content. This has been invented to counteract phishing and forgery. Am Dienstag, 26. Juni 2012 11:49:53 UTC+2 schrieb vjuranek: On

Re: Windows Jenkins Service, how to determine if 2nd job should be started?

2012-06-26 Thread Jan Seidel
Hiya, first of all if you expect help try a more convenient formatting like *line breaks*. Your text is SOO annoying that I had to think twice if I really want to read your case and reply on it ... There are many approaches to achieve your solution. Using the changelog file from Jenkins is

Re: Exception when executing the batch command : null

2012-05-25 Thread Jan Seidel
I would try *IF EXIST .git\lock del .git\lock* DOS has some weird behaviour. Sometimes it insists on a proper indention on other occassions does it not care about it. With this formatting is this problem part of the past. What about Jenkins Workspace Cleanup

Re: Using CopyArtifacts Plugin for Parameterized Projects

2012-05-25 Thread Jan Seidel
Hi Bob, the plugin is at the moment buggy... I learned of 2 triggers for this behaviour. The first is very inconsistent: If the triggered job is located on a different machine as the parent job Second is occurring always: *Which build: Upstream build that triggered this job *The second trigger

Re: Collabnet plugin: how to use role permissions fine grained

2012-05-25 Thread Jan Seidel
pushes very far, so can get hit in that crossfire. Also the local groups may be needed to be used to get what I suspect your use case is, and that may not be obvious without knowing how to use them ;-) On Thursday, 24 May 2012, Jan Seidel wrote: Hi Stephen, I've just checked RBAC from

Re: Prefix help with plugin name?

2012-05-24 Thread Jan Seidel
I'm content that the project config pages are meant. That's a situation I have been facing too. My advice at time being: Add new plugins subsequently as needed. That gives you are chance to get familiar with the new options before you jump the next plugin Take care Jan Am Mittwoch, 23. Mai

Collabnet plugin: how to use role permissions fine grained

2012-05-24 Thread Jan Seidel
Hi folks, I've got a question. Is it possible to create and individually assign new roles to Jenkins projects? I haven't found an project based security matrix for CTF roles but really need one. currently is it afaik only possible to assign entire TeamForge projects to a Jenkins project.

IO Exception on file copy

2012-05-24 Thread Jan Seidel
Hi folks, has someone an idea what is going on here? The slave is an old dinosaur that only dumps databases for quick backup purposes. It is located on a different network segment. The IT has found some unstable condition in our network backbone which occasionally may interfere but this IO

Re: Collabnet plugin: how to use role permissions fine grained

2012-05-24 Thread Jan Seidel
:58 UTC+2 schrieb Darryl Bowler: Have you seen this? http://wiki.hudson-ci.org/display/HUDSON/CollabNet+Plugin - Authentication or http://wiki.hudson-ci.org/display/HUDSON/Authentication Look at Authorize users at the project level Regards On May 24, 2012, at 4:20 AM, Jan Seidel wrote

Re: Collabnet plugin: how to use role permissions fine grained

2012-05-24 Thread Jan Seidel
plugin would give you what you want... Of course you'd have to pay for that, hence why this is a plug /shameless-plug On Thursday, 24 May 2012, Jan Seidel wrote: Hi Darryl, yes I have checked these links before. The problem is the project level described there allows only one configuration

Re: Displaying user in the Build History column on the left

2012-05-23 Thread Jan Seidel
That's something I would be interested in as well. I haven't looked too much into the syntax of the description setter yet but I think it can be done with some nasty regex Am Freitag, 18. Mai 2012 02:54:42 UTC+2 schrieb bl0ck3r: I already use the description setter to set the description to

Re: Exclusion plugin not releasing?

2012-05-23 Thread Jan Seidel
I think we have been discussing this issue 1-2 month ago in this group. As far as I recall do some certain job setups create a race condition. You should look it up. HTH Jan Am Montag, 21. Mai 2012 15:42:50 UTC+2 schrieb (unbekannt): We have used the Exclusion plugin (

Re: Unable to create new jobs after 1.463 upgrade

2012-05-16 Thread Jan Seidel
Hi Eric, are your plugins up to date? What happens if you disable all plugins? My guess is that a plugin obstructs your access to the config page. Take care Jan Am Donnerstag, 10. Mai 2012 18:42:10 UTC+2 schrieb eand...@appnexus.com: We're unable to create new jobs after upgrading to 1.463.

Re: long builds on a slave with an unstable connection

2012-05-16 Thread Jan Seidel
Hi KIK, but still it it can be understood and seems to be the right approach :) That was also my first thought of a solution as I read the thread. Am Montag, 14. Mai 2012 16:04:55 UTC+2 schrieb KIK: I have one idea. 1.install another master jenkins, it's not slave. 2.wget build url on

Re: Workspace cleanup after job removal

2012-05-16 Thread Jan Seidel
Hi Bertrand, I am a bit confused. Are you talking about DELETING the job itself and the workspace remains or after spawning a build job? If you delete a job in Jenkins should everything be gone. There is a plugin called Jenkins Workspace Cleanup

Re: Workspace cleanup after job removal

2012-05-16 Thread Jan Seidel
:* jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] *On Behalf Of *Jan Seidel *Sent:* mercredi 16 mai 2012 10:21 *To:* jenkinsci-users@googlegroups.com *Subject:* Re: Workspace cleanup after job removal Hi Bertrand, I am a bit confused. Are you talking about

Re: IllegalArgumentException: /usr/local/maven doesn't have a 'lib' subdirectory

2012-05-10 Thread Jan Seidel
The question here is: does the Jenkins job also access that folder in root context? I doubt it, that would be a security issue. You should figure out which user context is in use by Jenkins and then either add that service user to the root group or amend the folder permission to meet the

Re: CVS and extssh

2012-05-10 Thread Jan Seidel
: java.io.FileNotFoundException: C:\Documents and Settings\Default User\.ssh\id_rsa (Le fichier spécifié est introuvable) How can I generate this key ? Thansk, Xavier 2012/5/3 Jan Seidel wakkal...@gmail.com I agree on that. go to manage jenkins and create a new global property. name: CVS_RSH value: c

Re: CVS and extssh

2012-05-10 Thread Jan Seidel
Disregard - you should not define c:\Program Files\PuTTY\*plink.exe*. but c:\Program Files\PuTTY\*plink_h.bat*. - That is a personalized file :) Am Donnerstag, 10. Mai 2012 10:30:51 UTC+2 schrieb Jan Seidel: Hi Xavier, you should not define c:\Program Files\PuTTY\*plink.exe*. but c

Re: Hudson - Execute windows batch command problems

2012-05-10 Thread Jan Seidel
Hi Stan, you may be in a situation where your second batch requires it's own VM when spawning via Jenkins. I came across this once until now because I have made some weird stuff from Jenkins in operating system's admin context to access and modify services, access the device manager from cli

Re: Plugin update confusion

2012-05-10 Thread Jan Seidel
Update it manually. create a file named *subversion.jpi.disabled* and *subversion.jpi.pinned* Download the recent svn plugin and give it a different file name. I use subversion-1.39.hpi as name. restart the server. Jenkins or the plugins (dunno which causes this) has sometimes the annoying habit

Re: FATAL: Java heap space

2012-05-10 Thread Jan Seidel
add the argument -Xmx1024m (1 gig in this case) when calling java. You will have to test the amount you need. Take care Jan Am Mittwoch, 9. Mai 2012 21:22:41 UTC+2 schrieb Vincent Latombe: Hello, https://wiki.jenkins-ci.org/display/JENKINS/I%27m+getting+OutOfMemoryError Vincent 2012/5/9

Re: multiple workspaces causing problems for archiving

2012-05-10 Thread Jan Seidel
This happens on simultaneous builds on one node Just delete the workspace with the @number manually. That will else remain and be used in the future -.- After deleting the workspace will Jenkins start to use the default workspace and everything will be fine again. Configure your jobs that only

Re: critical issue for artifactory plugin : uploading broken jar after buil success

2012-05-10 Thread Jan Seidel
Are you using some kind of compression while transferring? I had a similar issue with or TeamForge server. The stream was compressed and broke the jars. Other scenario was I uploaded a bunch of files and downloaded all at once. There is a feature on our server that then zips all files to one.

Re: UI weird after update?

2012-05-10 Thread Jan Seidel
The error in the log states an URL that is located in the jenkins.war and the uncompressed sub-folder war. So my guess would be: Yes it is possible to screw it. And I have had some supporting experience with CERN so I would even say it is really possible especially if you ain't managing the

Re: LDAP authentication fails

2012-05-02 Thread Jan Seidel
was on holiday and got back to work only this morning. No.. no special characters that need to be escaped, nor wrong password.. I even tried copy/paste of the password, but it doesn't help.. Any more hints, please? 2012/4/30 Jan Seidel wakkal...@gmail.com Hi Nunni

Re: Pre-Checkout actions?

2012-05-02 Thread Jan Seidel
pre-scm-buildstep plugin? YAY! Never heard of that nor seen it before but you have just made my life pretty much easier :) Thanks Chris! Take care Jan Am Montag, 30. April 2012 14:55:16 UTC+2 schrieb cjo: If you just want to remove the junction points between triggering a build and the

Re: Gzipped build log

2012-05-02 Thread Jan Seidel
Hi David, opening an issue seems to be a good idea. I have this issue always when the log file is chunked. As soon as I say view all is everything fine. I wouldn't mind if it just are a few garbled signs as is often is but is pretty annoying when the log becomes 4-8 times as broad only with an

Re: LDAP authentication fails

2012-04-30 Thread Jan Seidel
Hi Nunni, org.acegisecurity.BadCredentialsException: Bad credentials tells you at least that something is happening and then fails. This looks more like a matter of human engineering rather the technical engineering ;) Do you use some funny special character which may interfere with your

Re: Last Successful Artifacts on Multi-Configuration Job

2012-04-24 Thread Jan Seidel
Hi Jeff, you mean a summary of all artifacts from a pipeline of jobs? not as far as I know. The only quick solution that crosses my mind would be a trailing job that with the copyartifact plugin gathers all artifacts (You can set last successful there) from all upstream jobs. That would give you

Re: Configuration value changing between loading of config file and instantiation of plugin starting in Jenkins 1.455

2012-04-23 Thread Jan Seidel
Hi Grant, nice post but ... I would assume you do rather address it to https://issues.jenkins-ci.org to get the bug fixed ;) Take care Jan On 21 Apr., 07:06, Grant Limberg glimb...@gmail.com wrote: I've been experimenting with the Amazon S3 Publisher plugin in Jenkins 1.460 in preparation

Re: How I can debug a plugin?

2012-04-23 Thread Jan Seidel
Hi Albin, what you are trying to do is a remote debugging. That is described in the link Jesse provided: http://www.google.com/url?sa=Dq=https://wiki.jenkins-ci.org/display/JENKINS/Plugin%2Btutorial%23Plugintutorial-DebuggingaPluginusg=AFQjCNFnyh6EcntVf7DDGbHEaQ7xw2F71w E.g. for Windows set

Re: Process leaked file descriptors.

2012-04-05 Thread Jan Seidel
Oh boy X) This sounds a bit like a memory issue in Java. Did you try -XmX1024m or the like? To answer your question, I think I have seen a plugin that notifies an upstream job...*scratch* Join plugin I think. But this requires to get creative. The join plugin interfaces between an up- and

Is it possible to let the jobs roam in a node cluster?

2012-04-05 Thread Jan Seidel
Hi there, my question is already stated in the title as you can see :) I know that you can let jobs roam in a node cluster but can you let it REALLY ROAM? Jenkins tries to let jobs build on nodes which already have been used for building that particular job. That clutters some build queues while

Re: Jenkins Startup error

2012-04-04 Thread Jan Seidel
Hi, I am a bloody *nix n00b but something jumped me instantly. Is the server running in the same environment as the JDK? e.g. do you have a java_home output of /Path/to/jdk1.6.0_31 as system or user context? And does the Jenkins server run in the same context? It makes no sense to have a correct

Re: Process leaked file descriptors.

2012-04-04 Thread Jan Seidel
Hi Kristian, let the log level as it is ;) I think there is an EOF occurring in the data stream of the pipe that is not meant to be addressed to Jenkins but rather to some file for test results or cache. Maybe you can encapsule it by running it separated in the batch job (I think the batch

Re: Process leaked file descriptors.

2012-04-04 Thread Jan Seidel
btw. is it confirmed that the test runs proper as standalone? not that you are chasing a symptom and not the cause

Re: Q: passing svn revision or culprits information trough promotion?

2012-04-04 Thread Jan Seidel
Hi Samu, uhm... there are several options available without plugins - in case some should exist. Figure out how the culprits are handled. I think it'll be a variable as culprits also can be listed in email notifications. Stream it into a file, archive it as artifact. Then use the copy artifact

Re: Order of Jenkins actions

2012-04-03 Thread Jan Seidel
Hi Rodney, well the name is programmtic XD You can simply trigger a downstream build that makes the final action you'd like to see after the artifact deployer. Take care Jan On 1 Apr., 23:26, Grégory Boissinot gregory.boissi...@gmail.com wrote: PostBuildScript is designed to run in the last

Re: Master/Slave security

2012-04-03 Thread Jan Seidel
Word! Sami I use Jenkins also for administrative jobs like rebooting the machine, restarting the services, opening the task manager or checking with WMI the disk space but you could of course also do more exciting things here ;) Some jobs like opening the task manager or rebooting the machine

Re: Is it possible to distinguish between a job triggered by an SCM trigger/periodic trigger/etc... based on a system property set by Jenkins?

2012-03-28 Thread Jan Seidel
Hi Omair, not as far as I know. I think the environment variables would end up in one big mess as you would have to invent a system property for each single job with each trigger reason. Way easier is to duplicate a job as many times as you have different build trigger reasons. This makes you

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Jan Seidel
Hi Chris, we will soon go for Sonar http://www.sonarsource.org/features/ not sure if that fits your expectation. I'm even not sure if it fits ours XD But it seems to be very powerful and versatile not to mention that the sonar server, that runs separately can be connected to jenkins via a jenkins

Re: How to start jenkins service with increased java heap memory

2012-03-26 Thread Jan Seidel
Hi Vladimir, actually is it the file jenkins.xml/respectively hudson.xml not config.xml... --- SNIP --- executablejava/executable arguments-Dhudson.DNSMultiCast.disabled=true -Xrs -Xmx256m - Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -jar %BASE% \jenkins.war

Re: Jenkins plugin update apparently doesn't work

2012-03-23 Thread Jan Seidel
Hi Paul, the catalogue file does indeed mention version 1.9 but the link leads to nowhere. The catalogue file is located at http://dl.aragost.com/jenkins/updates/update-center.json You can search for the URL by searching the plugin name. it follows after the name listed. sometimes is it

Re: Change svn check-out strategy for automatic/manuel build

2012-03-22 Thread Jan Seidel
Hi Chitech, I must fully agree Didier. It would be possibile to achieve your idea with dirty hacks but the effort is in no releation the benefit. Copy and modifiy the job is done within a few seconds. take care Jan On 22 Mrz., 14:44, Didier Durand durand.did...@gmail.com wrote: Hi, I guess

Re: Jenkins CollabNet Plugin throw null pointer exception.

2012-03-21 Thread Jan Seidel
Hi Tim, this looks familiar in connection with Collabnet ... But basic steps first. Are you using the a plugin that matches your CTF version? Which plugin are you using? I assume Collabnet Plugins 1.1.6. Which CTF are you running? Does this error occur permanently? My suspicion goes for the CTF

Re: Job Dependency

2012-03-21 Thread Jan Seidel
Hi Thomas, sure there is. The imagination of yours is more or less the limit of what you can do with Jenkins. Try the parametrized trigger plugin (https://wiki.jenkins-ci.org/ display/JENKINS/Parameterized+Trigger+Plugin) and make your build sensitive to parameters. It is a bit hard to tell you

Re: How to copy artifacts back to workspaces of upstream job?

2012-03-21 Thread Jan Seidel
Many jobs or not is a kind of religious question XD I see it exactly contrary to Sami but I suppose this depends also on the environment ;) In my department do we have 4 active branches plus 15-20 inactive which may be revived for maintenance, CRs and the like at any time. These come along with

  1   2   >