Jenkins 1.496 on Windows Server 2008: Update Plugin Manager does not work

2013-01-03 Thread Michael Wiedmann
(e.g.in the *Available* tab). Any hints? Thanks Michael

Re: How to run PowerShell during job

2012-12-13 Thread Michael Powell
the PowerShell scripts today, so obviously if I can get them to work, I want to do that. But if I need to rewrite them as batch files, then I'll do that instead. Thanks in advance.. Regards, Michael

Email-ext: access job entry parameter

2012-11-20 Thread Michael Hüttermann
the variable. Thanks for your help. Best regards Michael

Re: Email-ext: access job entry parameter

2012-11-20 Thread Michael Hüttermann
Hello, sometimes it is already a big help just writing the question. :) Found it, thanks. Michael Hello, my build job is parameterized with $variable. The default content of the mail is: ${JELLY_SCRIPT,template=template} What do I have to write inside the Jelly template to output

Mac: Can't run any parallel tasks

2012-11-02 Thread Michael Funk
Every time I try to run a build, I get a bunch of lines like this: /Users/Shared/Jenkins/Home/jobs/dghhtreew/workspace/build.xml:28: The following error occurred while executing this line: /Users/Shared/Jenkins/Home/jobs/dghhtreew/workspace/build.xml:39: Execute failed: java.io.IOException:

Re: Access to the execution slot number on a build node

2012-10-23 Thread Michael
Thanks Chris, That is exactly what I needed. I'll use the EXECUTOR_NUMBER to solve the immediate problem. The port allocator plugin could be a more log-term solution. Cheers Michael. On Tuesday, 23 October 2012 01:56:17 UTC+1, Christopher Orr wrote: Hi there, On 10/23/2012 01:17 AM

Access to the execution slot number on a build node

2012-10-22 Thread Michael
I have 4 execution slots on my master node which run similar jobs. I'd like to have access to the number of the slot that a build is running on that I can use it calculate a port offset for each build so that there is no clash of ports. Had a quick look at the API doc

Change an 'aborted' build to a 'failed' build

2012-10-16 Thread Michael
When a build is aborted, either manually or by a timeout, then I want to change the status of the build to 'Failed'. I'm using the following code, in the Groovy post build plugin, to change an aborted build to a failed build: if ( hudson.model.Result.ABORTED == manager.build.result )

Questions about Heavy Job Plugin

2012-10-06 Thread mpapo - Michael Pailloncy
Hi all, I've questions about https://wiki.jenkins-ci.org/display/JENKINS/Heavy+Job+Plugin Configuration : - 1 node with 2 executors - 3 jobs with one taking 2 executors with this plugin If we run a first job taking one executor and a second taking two executors, the second is waiting

parameterize downstream job with user prompt

2012-08-29 Thread Michael Hüttermann
Hello, can I somehow parameterize a downstream build job with a String where I offer a default value and the user gets a prompt to commit the value or can enter a different one? Thanks. Michael

Re: parameterize downstream job with user prompt

2012-08-29 Thread Michael Hüttermann
Hello, I want the user to confirm the parameter before the downstream job starts. The default parameter (i.e. the parameter that is offered the user as default, for confirming or changing) is computed during build time of the upstream job. Any idea how to accomplish that? Thanks. Michael

SVN credentials re-use in shell script, later in the build job

2012-08-24 Thread Michael Hüttermann
username/password. Later in the build job, I want to connect to Subversion from inside a Shell build step. How can I reuse the credentials that I've used and entered before (to checkout from Subversion). Any ideas? Thanks. Michael

SVN changes/commit messages, and env variable

2012-08-09 Thread Michael Hüttermann
job could I best place a http://mymachine/job/buildjob/buildnumber/api/xml?xpath=//changeSet/item/msgwrapper=messages to get all SVN commit messages and assign the result to a Jenkins environment variable? Thank you. Michael

how to write a file via post-build groovy plug in slave

2012-08-08 Thread michael chiu
hi ALL, Does anyone have experience in write a file in the slave workspace via post-build groovy plugins ? I know how to read it but I don't know how to write it back . I always got the following error groovy.lang.MissingMethdexception: No signature of

Re: How to use different SVN workspace version on a slave?

2012-08-03 Thread Michael Pailloncy
Le 03/08/2012 21:30, Fritz Elfert a écrit : I can't find any way to select the workspace version per slave Hi, I'm not sure to clearly understand what you want. If you have slaves with SVN 1.7 and slaves with 1.6 natively, you can add labels like svn1-6 to nodes with 1.6 version and svn1-7 to

Re: How to use different SVN workspace version on a slave?

2012-08-03 Thread Michael Pailloncy
Le 03/08/2012 22:44, Fritz Elfert a écrit : -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Michael, On 08/03/2012 10:00 PM, Michael Pailloncy wrote: Le 03/08/2012 21:30, Fritz Elfert a écrit : I can't find any way to select the workspace version per slave Hi, I'm not sure to clearly

Re: how to read the content of a file in the remote workspace via groovy postbuild plugin

2012-08-02 Thread michael chiu
* michael chiu於 2012年7月31日星期二UTC+8下午12時17分41秒寫道: Hi ALL I am trying to read the content of a file in the remote workspace using the GroovyPostbuild Plugin. It seem i have to use FilePath to access the remote file . does anyone have similar experience on this ? or give me a example

miss changelist number in email-ext plug-in with Perforce

2012-08-02 Thread michael chiu
-ext plugins and perforce plugin in Jenkins 1.465 ? Regards, Michael Chiu

Re: miss changelist number in email-ext plug-in with Perforce

2012-08-02 Thread Michael
template, there is info on how to do that on the wiki. Sent from my Windows Phone From: michael chiu Sent: 8/2/2012 8:50 AM To: jenkinsci-users@googlegroups.com Subject: miss changelist number in email-ext plug-in with Perforce Hi ALL, Have anyone use email-ext groovy template

how to read a slave log into email-ext via groovy script template

2012-07-30 Thread michael chiu
hi ALL , I add the following script in the email-ext groovy for reading the failed_case.html into the mail body. It works if I run job on the master node[linux]. % def failed_case = new File(build.getWorkspace().getRemote()+ '\\failed_case.html') println

Re: how to read a slave log into email-ext via groovy script

2012-07-30 Thread michael chiu
hi slide, Can you kindly show me some example about reading files ? I only find some article about build.getLog(100) . Michael Chiu slide於 2012年7月30日星期一UTC+8下午6時15分09秒寫道: template MIME-Version: 1.0 Content-Type: multipart/alternative; boundary

Re: upstream changeset info in the email-ext notify from downstream project

2012-07-30 Thread michael chiu
. def changeSet = null changeSet = build.changeSet if(upstreamBuild != null) { // now do stuff with that upstream build changeSet = upstreamBuild.changeSet } michael chiu於 2012年7月23日星期一UTC+8下午7時52分19秒寫道: Hi ALL, I found many article from

Re: upstream changeset info in the email-ext notify from downstream project

2012-07-25 Thread michael chiu
I don't know how to get upstream's changeset in email-ext . Do you know how to access upstream's changeset in groovy in email-ext ? Varghese Renny於 2012年7月23日星期一UTC+8下午8時24分26秒寫道: From my opinion you can use promotion plugin in upstream job, for sending the build details about the

upstream changeset info in the email-ext notify from downstream project

2012-07-23 Thread michael chiu
Hi ALL, I found many article from you about jenkins email-ext . Can you give me some advice about upstream changeset . I have 2 projects build and test . I would like to include upstream changeset info when downstream is failed in the email notification . I have used the

DevOps book, call for contribution: team building -- We want your story!

2012-07-18 Thread Michael Hüttermann
. The contribution will be labeled as your contribution of course. Thanks. Michael

Trigger action just before a build is aborted.

2012-07-17 Thread Michael
*Use Case* A java process is causing the build to hang and as a result the build times out and the build is aborted. What I would like to happen is that a pre-abort action be triggered, for example run jstack on all the java processes. I understand that there could be a problem of this action

Re: Create a pre-production environment for Jenkins

2012-06-12 Thread mpapo - Michael Pailloncy
11 juin 2012 23:09:29 UTC+2, LesMikesell a écrit : On Mon, Jun 11, 2012 at 2:54 PM, mpapo - Michael Pailloncy michael.paillo...@gmail.com wrote: nobody ever had this problematic ? I think most people do it the other way around. That is they build and test their test environment first

Create a pre-production environment for Jenkins

2012-06-11 Thread mpapo - Michael Pailloncy
Hi, Currently, my Jenkins is used very frequently by teams and it's dangerous to update it directly in the production environment. Do you have a specific methodology to update Jenkins before apply updates in the production environment ? I plan to run a Jenkins (with a specific user and http

Re: Create a pre-production environment for Jenkins

2012-06-11 Thread mpapo - Michael Pailloncy
nobody ever had this problematic ? Le lundi 11 juin 2012 14:32:32 UTC+2, mpapo - Michael Pailloncy a écrit : Hi, Currently, my Jenkins is used very frequently by teams and it's dangerous to update it directly in the production environment. Do you have a specific methodology to update

RE: Email with pmd | checkstyle

2012-05-31 Thread Michael Polinovskiy
Hi Ulli, great job, thanks! Wouldn't it be possible somehow to add a template for Clover and Robot Framework? Regards, Michael -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ullrich Hafner Sent: Tuesday, May 22, 2012 12

RE: Email with pmd | checkstyle

2012-05-31 Thread Michael Polinovskiy
-ins. Do you have some insights about whether all plug-ins should adhere to the same schema in terms of exposing the collected data? Where could I look into to find out the proper Objects and their methods to include them into the jelly template? Michael -Original Message- From: Ullrich

Getting custom clover reports with automated builds/tests

2012-05-15 Thread Michael Polinovskiy
, hardly maintainable and not so trivial to implement? Does Clover posts the summary data to some environment variables which can be accessed directly from Jenkins (to put them into the ext-email plugin, for example)? Any help would be highly appreciated. Michael

parameterized build on other projects

2012-04-30 Thread Michael Hüttermann
with the current jobs' build status, but I want relation to current jobs' input parameters. Thanks. Michael

RE: Jenkins with iOS development

2012-04-05 Thread Elkin, Michael
The application that requires access to your private key is “/usr/bin/codesign” if you don’t want to grant wildcard access to your private key. If you’re doing any simulator orchestration then you will also want to be sure that the user logged into the CI agent is the same user Jenkins is

Re: dpkg versioning from Git via Jenkins

2012-03-01 Thread Michael Prokop
--release ... * dch -b -v ... git-dch supports the git commit hash out-of-the-box in the version string, you can also include custom information like build-number, timestamps,... in the version string. -mika- -- http://michael-prokop.at/ || http://adminzen.org/ http://grml-solutions.com/ || http

RE: Set a global Max # of builds to keep?

2012-02-29 Thread Hessick, Michael
Check out the configuration slicing plugin. https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin Cheers, -Mike -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of andreyev Sent: Wednesday, February

Re: older format and/or unreadable data

2012-02-21 Thread Michael Higgins
configured a plugin that is now disabled. The data is still in config.xml but has no purpose without the plugin. If I remember correctly, 'manage' just deletes the keys that have no purpose in the current context. HTH. Cheers, -- Michael Higgins QA Intern, PuppetLabs mhigg...@puppetlabs.com

RE: MIgrating security to large collection of jobs.

2012-02-17 Thread Elkin, Michael
If you have well-named jobs, you can try the role-based plug-in which has regular expressions and may be easier to test/deploy/manage: https://wiki.jenkins-ci.org/display/JENKINS/Role+Strategy+Plugin From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of

Re: Hiding job from unauthenticated users

2012-02-14 Thread Michael Higgins
, but... it's a bit of a sketch. And I can't really add anything more informative to it. ;-) Cheers, - Michael If you use this, you can set some jobs visible and some invisible to unauthorized users. There is a permissions matrix added to the job configuration page that you can turn

Re: Selenium plugin updates

2012-02-07 Thread Michael Higgins
in the plugin. Restart Jenkins. No difference. So far this seems like a dead end. :-/ Just a thought as I didn't use it myself, in the end iirc it was only a matter of driver problems or something like that ... I'll check if I can't find the logs. Richard Thanks again, -- Michael Higgins

Re: Selenium plugin updates

2012-02-06 Thread Michael Higgins
/hudson794649166709426834.sh [ that is, running the shell script uploaded by Jenkins before Jenkins deletes it ] ... works. What am I missing here? Cheers, -- Michael Higgins QA Intern, PuppetLabs mhigg...@puppetlabs.com

Re: Selenium plugin updates

2012-02-06 Thread Michael Higgins
. [ more time passes ] So, what *seems* to work is this: cat .profile [ -e /tmp/.X100-lock ] rm -f /tmp/.X100-lock Xvfb :100 -ac 2/dev/null export DISPLAY=:100.0 ... in my $JENKINS_HOME HTH someone else. Thanks Richard for your thoughtful replies. Cheers, -- Michael Higgins QA Intern

<    1   2   3   4   5