RE: New build flow seems to break many things

2014-05-01 Thread James Nord (jnord)
That sounds like an issue in the email-ext. I get mails from the normal jenkins mailer. /James From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Tim Jackson Sent: 30 April 2014 23:05 To: jenkinsci-users@googlegroups.com Subject: Re: New build flow

Re: BUILD FLOW parallel closure simple example

2014-05-01 Thread Peter Lenson
Stuart I still get the same result using your suggestion...below is exactly what I did and my results: I created a build flow job called *TestJobDSL* containing the following script in the Define build flow using flow DSL section of Build Triggers: // construct and collect closures for LATER

Bugzilla

2014-05-01 Thread Mallepally Sandeep Reddy
Hi folks i installed bugzilla Plugin but i did find Bugzilla tab in configuration .were we find bugzilla tab -- 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 it, send an email to

Re: Mercurial + multi-configuration job = extra branches, lots of pain

2014-05-01 Thread bluntcoder
So I ended up circumventing my problem by getting rid of the multi-configuration plug-in. I just pull once at the top, build everything in sequence, including both platforms, and commit at the end. Haven't had a problem since. Seems that the Hg plugin and multi-config just haven't been

Running a jenkins windows batch command non-headless mode

2014-05-01 Thread bluntcoder
Hi there. Hopefully this is an easy answer. I have an automated test I'm trying to run that requires initialization of the graphics driver, and thus I need a window to pop up in Windows. Is there anyway within a Jenkins project to make a command run it in interactive, on the desktop mode

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Eric Pyle
People I know who've done this have run the Windows test machine as a JNLP slave. Eric On 5/1/2014 8:14 AM, bluntcoder wrote: Hi there. Hopefully this is an easy answer. I have an automated test I'm trying to run that requires initialization of the graphics driver, and thus I need a window

Re: Java Version 7, Update 45 warning every time I try starting the slave

2014-05-01 Thread k . thieling
Try this: Open Java in your control panel Go to the Security tab Click edit site list Click Add Enter in the root url of your jenkins server Not 100% sure if that will work for you, but I believe we had to do that with a couple of our build machines running java 7. You might get the

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread k . thieling
Yeah you should be able to install the slave as a service Go into services, right click on the slave service and go to properties Go to the Log On tab and check the box that says Allow service to interact with desktop - Original Message - From: Eric Pyle eric.p...@cd-adapco.com To:

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Mark Mikulec
This is my main Jenkins box though. How will this affect all my other jobs? On May 1, 2014 8:31 AM, k.thiel...@comcast.net wrote: Yeah you should be able to install the slave as a service Go into services, right click on the slave service and go to properties Go to the Log On tab and check the

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread k . thieling
It really shouldnt affect the other jobs, however, to be safe you could set up a slave service on the main jenkins box so that it has the main jenkins service and a slave service. Set up that particular job to run on that slave rather than the master. - Original Message - From: Mark

Restoring Access to my jenkins-ci.org account

2014-05-01 Thread Simon Schlachter
Hey Guys, looks like my username simschla has been migrated from java.net to jenkins-ci.org - but I don't remember the password (or it does not work) and resetting the password results in no e-mail landing in my inbox. Can anybody help me get access to my account? Cheers, Simon -- You

Re: New build flow seems to break many things

2014-05-01 Thread Greg Dickie
Hi Nicolas, I would like to understand the reason for that design. Maybe I'm using it incorrectly but it was doing what we needed. Why wouldn't you want SCM polling, artifacts, etc.? Is the intention that we create build steps to handle that stuff or is build flow not the right way to go

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Mark Mikulec
Since I'm using already a custom Jenkins local account, I do not have that option. Which is why I'm confused that it doesn't work. Maybe its because its a service? On May 1, 2014 8:31 AM, k.thiel...@comcast.net wrote: Yeah you should be able to install the slave as a service Go into services,

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread k . thieling
I'm not sure about that. Is there a reason you need to use a custom account instead of local system? As I said, you could set up a slave service to run on this machine for certain jobs and have that be under local system. - Original Message - From: Mark Mikulec miku...@gmail.com

Matrix build workspaces

2014-05-01 Thread Scott Evans
We have a bunch of matrix (multi-configuration) build jobs which are configured to use a Git plugin to pull source code into the job workspace. Unfortunately, what happens is that the parent job pulls the full set of code and expands it into the parent workspace, only to then fire off all of the

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Scott Evans
Make sure the service is set to interact with the desktop, but I believe you also need to make sure that there's an account logged in, so there's a desktop session to interact with. Scott On Thu, May 1, 2014 at 9:57 AM, k.thiel...@comcast.net wrote: I'm not sure about that. Is there a reason

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Mark Mikulec
The reason is due to a bug in the mercurial plugin that requires an authentication token be cached in the users profile. Otherwise the job would always re-clone the repo every build. On May 1, 2014 10:57 AM, k.thiel...@comcast.net wrote: I'm not sure about that. Is there a reason you need to

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread Mark Mikulec
Nope, even when I'm logged on, it doesn't work. However I stopped the service and ran it directly via the command line. That in fact did work. A bit sloppy, but that's just the way windows is. Thanks for everyone's help! bc On May 1, 2014 11:07 AM, Mark Mikulec miku...@gmail.com wrote: There

Re: Running a jenkins windows batch command non-headless mode

2014-05-01 Thread k . thieling
Then I would suggest creating a batch script or something that starts the service when the user logs in by putting it in the startup folder. - Original Message - From: Mark Mikulec miku...@gmail.com To: jenkinsci-users@googlegroups.com Sent: Thursday, May 1, 2014 10:19:52 AM Subject:

Re: Bugzilla

2014-05-01 Thread Tim Jackson
A Bugzilla section shows up on the Configure page (http://your install/configure). It allows three settings: Bug ID Regex - I have not found this to work completely to include things like Bug I can only get it to put hyperlinks on numbers. I use \b#?[0-9]{3}\b because, for now, all of

Re: BUILD FLOW parallel closure simple example

2014-05-01 Thread Stuart Rowe
My mistake, the def j = i should be outside of the closure: // construct and collect closures for LATER execution buildClosures = [] for (int i = 1; i50; i++) { def j = i def curClosure = { build(TestParameterized, Parameter : j) } buildClosures.add(curClosure) } // execute

Re: Authentication problem (?) when building through a Github webhook

2014-05-01 Thread Scott Purcell
Pinging this to try again to get some other eyes and minds applied to this problem... On Tuesday, January 28, 2014 6:11:21 PM UTC-6, Scott Purcell wrote: Context: I'm maintaining courseware that consists of restructured text source files that we maintain in Github and render into PDFs for

Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Ajay Divakaran
Hi all, *My use-case/story:* As a lazy developer, I don't want to look at the build monitor or always login to Jenkin's dashboard page to know the statuses of the jobs. Given I almost always have Chrome open, I want the browser to tell me when the currently configured jobs fail or a one-click

Re: Authentication problem (?) when building through a Github webhook

2014-05-01 Thread Mark Waite
I believe the current git plugin expects that you'll enter the user name and password as a credential in the Manage Credentials globally, then that your job will reference that credential rather than embedding the credential in the URL. Could you try that? It also has the benefit that your

Re: Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Mark Waite
I attempted to use it by following the README instructions, was able to load it into Chrome, and then when trying to configure it, it refused all the URL's I entered. It reported that the URL was invalid. Are there special configuration steps required? Do I need to restart Chrome after using

How to Configure a Jenkins project to run ant from a Windows Slave

2014-05-01 Thread John Park
Hi All, Glad this forum is around, I could sure use some help. Here's my story: I have an ant script that's on the windows slave machine that I would like to run from the Jenkins browser, which is located on another server (master). I followed the steps to set up a Master-Slave connection

API to tie matrix parent job build

2014-05-01 Thread Hiteswar
Hello Gang, Any API or groovy way to tie matrix parent job ? Currently this is done by plugin matrix tie parent but I want it by groovy . I tried setAssignedLabel() but this does not work for matrix job . Regards hiteswar -- You received this message because you are subscribed to the Google

Re: How to Configure a Jenkins project to run ant from a Windows Slave

2014-05-01 Thread Mark Waite
The machine which is trying to execute your ant.bat file probably does not have the Ant bin directory in its path. Since it can't find the ant.bat file, it fails. There are a few approaches you might consider: - Modify the PATH on the Windows slave to include the Ant bin directory (the location

Re: Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Ajay Divakaran
Mark, The url has to be of the format ip-address:port e.g 182.73.212.230:8080 On Fri, May 2, 2014 at 5:57 AM, Mark Waite mark.earl.wa...@gmail.comwrote: I attempted to use it by following the README instructions, was able to load it into Chrome, and then when trying to configure it, it

Re: Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Ajay Divakaran
Just to make it clear. The *http:// *part should *not *be included. On Fri, May 2, 2014 at 8:43 AM, Ajay Divakaran ajay.divakara...@gmail.comwrote: Mark, The url has to be of the format ip-address:port e.g 182.73.212.230:8080 On Fri, May 2, 2014 at 5:57 AM, Mark Waite

Re: Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Richard Bywater
What happens if its running https? :) Richard. On Fri, May 2, 2014 at 3:16 PM, Ajay Divakaran ajay.divakara...@gmail.comwrote: Just to make it clear. The *http:// *part should *not *be included. On Fri, May 2, 2014 at 8:43 AM, Ajay Divakaran ajay.divakara...@gmail.com wrote: Mark,

Re: How to Configure a Jenkins project to run ant from a Windows Slave

2014-05-01 Thread Les Mikesell
On Thu, May 1, 2014 at 9:00 PM, Mark Waite mark.earl.wa...@gmail.com wrote: The machine which is trying to execute your ant.bat file probably does not have the Ant bin directory in its path. Since it can't find the ant.bat file, it fails. There are a few approaches you might consider: -

Re: Chrome plugin for Jenkins job monitoring

2014-05-01 Thread Ajay Divakaran
I've just updated the plugin to accept both http and https urls. On Friday, May 2, 2014 8:46:56 AM UTC+5:30, Ajay Divakaran wrote: Just to make it clear. The *http:// *part should *not *be included. On Fri, May 2, 2014 at 8:43 AM, Ajay Divakaran ajay.divakara...@gmail.com wrote: Mark,

Re: How to Configure a Jenkins project to run ant from a Windows Slave

2014-05-01 Thread John Park
Les, Mark, Thank you so much for you responses. I did verify that ANT_HOME is set and in my PATH within my environment: variables on the slave machine (I did an echo for %PATH%, and saw my the path to my ANT bin folder). I think the problem is that I am not configuring the job correctly from the

Re: New build flow seems to break many things

2014-05-01 Thread nicolas de loof
Issue with workspace is people are abusing the DSL and start to code build custom steps into build flow, not delegating to jobs. build flow was designed to orchestrate (flow) jobs together. The fact jenkins needs a workspace to poll scm is another story. I prefer post-commit notification anyway