RE: Copy artifact and dynamic project names

2014-04-01 Thread Matthew.Webber
Sorry about the late reply, but yes, I use copy artifacts with dynamic project names without any problems. Even a project name like this works for me: GDA.${GDA_release}-create.product.beamline-${GDA_group}-${GDA_beamline} The thing to remember is that the environment variables need to exist,

Re: Any way to affect the recipient of the mail(ext) plugin recipient list ?

2014-04-01 Thread Max Rydahl Andersen
On Monday, March 31, 2014 2:56:11 PM UTC+2, slide wrote: > > Environment variables work fine, you use the ENV token like ${ENV, > var="YOURVAR"}. You could also use a presend script to modify the recipient > list using a groovy script. See the wiki for more info. > No, the ${ENV style does no

Re: Any way to affect the recipient of the mail(ext) plugin recipient list ?

2014-04-01 Thread Slide
No, its been around for a long time and works for me just fine. It may depend on how you are setting the env variable. Ones that are set by build steps are not retained by Jenkins (nothing to do with email-ext) so keep that in mind. On Apr 1, 2014 4:43 AM, "Max Rydahl Andersen" wrote: > > > On Mo

RE: plugin wishlist/ideas

2014-04-01 Thread Ginga, Dick
Tomas, thanks, I have a test Jenkins server. What do you mean by “released”? and Where can I get the plugin? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Tomáš Bambas Sent: Monday, March 31, 2014 5:45 PM To: jenkinsci-users@googlegroups.com Subjec

Re: plugin wishlist/ideas

2014-04-01 Thread Tomáš Bambas
I mean the official release. The plugin should be visible in the Plugins Update Center. ;) The plugin name is "InstallShield Plugin". https://wiki.jenkins-ci.org/display/JENKINS/InstallShield+Plugin I tested plugin with InstallShield Express Trial projects, but the functionality of the ISCmdBld.e

Web interface images disappear after a while

2014-04-01 Thread Robert Krüger
Hi, I am running a Jenkins instance on OSX and everything works like a charm except that after a while the images of the web interface are no longer there (http not found when looking at the image urls). They reappear after a server restart. I don't know where those images are kept. Could it be t

Jenkins console not loading at times

2014-04-01 Thread kishorerp
We are seeing random issues of jenkins console not loading. Jenkins service is running when the issue happens Using jenkins lts1.532.1 on centos 64 bit. Any debugging pointers? Seeing this after installing naginator plugin Uninstalled it, even then issue is seen. -- View this message in contex

jenkins/winsock CA signed cert exception

2014-04-01 Thread TJ Bryant
I am running jenkins on red hat linux. I have a CA signed certificate. These are my parameters: JENKINS_ARGS="--httpsCertificate=/var/lib/jenkins/cert/cci-jenkins_uncc_edu_cert.cer --httpsPrivateKey=/var/lib/jenkins/cert/cci-jenkins.key" When I try to start jenkins I get this exception: Run

Re: Multiple Git.exe processes running on my build server even when there are no builds going

2014-04-01 Thread S Day
Hey!!! Just a follow up, I've decreased my polling time significantly and used a h/ format to stagger them. I've also implemented the post commit jenkins service webhook built into github's servers and this significantly dropped down the number of git.exe and ssh.exe processes spawning. I ma

Re: Copy artifact and dynamic project names

2014-04-01 Thread Daniel Beck
On 01.04.2014, at 11:41, matthew.web...@diamond.ac.uk wrote: > Sorry about the late reply, but yes, I use copy artifacts with dynamic > project names without any problems. Even a project name like this works for > me: >GDA.${GDA_release}-create.product.beamline-${GDA_group}-${GDA_beamline}

Re: Web interface images disappear after a while

2014-04-01 Thread Daniel Beck
https://issues.jenkins-ci.org/browse/JENKINS-17526 Fixed in 1.549. For the fix to take effect, you'll either need to a) install Jenkins 1.549 or newer (via the pkg) or b) manually perform steps equivalent to these: https://github.com/jenkinsci/jenkins/commit/7c51cec55649b0e46047cb5e3198b66c3bdd94

Re: Web interface images disappear after a while

2014-04-01 Thread Richard Mortimer
On 01/04/2014 19:19, Daniel Beck wrote: https://issues.jenkins-ci.org/browse/JENKINS-17526 Fixed in 1.549. There are a few other JIRA entries related to this (sorry don't have the list to hand) but I did notice that yesterday Kohsuke made a fix that should fix all of these. https://issues.je

Re: Custom workspace for remote machine

2014-04-01 Thread Mark Kendzior
I think what you would want to do is setup the remote machine as a build slave. This would allow you to check the code out to that slave in whatever workspace you wanted and run the build on that machine. See: https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds for additional informa

Re: Mass Jenkins job updates

2014-04-01 Thread Matt Legrand
On Tuesday, May 21, 2013 1:11:57 AM UTC-7, matthew...@diamond.ac.uk wrote: > > I often find the low-tech approach works. For simple bulk changes I edit > the config.xml files using the bash command line (this is Linux, > obviously). Something like this: > > > > cd /path/to/Jenkins-home/jobs/

Re: "Move" a job from a Linux master to a Windows master

2014-04-01 Thread Steve K
Thanks again Daniel. Getting rid of the sym-links prior to copying over to Windows does seem to make the target system happier. Cheers! On Monday, March 31, 2014 5:34:29 PM UTC-4, Daniel Beck wrote: > > > On 31.03.2014, at 22:13, Steve K wrote: > > > As shown below, the job attempts to create

Parameterized build parameter help

2014-04-01 Thread silver
I hope I can explain this clearly enough the first time around. I have a parameterized build. Under "This build is parameterized", I have added three choices: TEST_ARGS, which accepts a string TEST_GROUP_A, which is a "choice" TEST_GROUP_B, which is also a "choice" I have these broken out for c

"no route to host" using LDAP and Active Directory

2014-04-01 Thread Terry Lacy
I'm having intermittent issues authenticating with Jenkins. I use LDAP with Active Directory. My Jenkins server is on Ubuntu 12.04 Server, and AD is running on Windows 2008 R2. When authentication fails, I see this in my logs: Apr 01, 2014 2:15:04 PM hudson.security.AuthenticationProcessingF

Re:Parameterized build parameter help

2014-04-01 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
What do you mean by 'you have a job trigger'? If you mean that you have a child job triggered by the completion of the first one, then any environment variables you set in the build steps in the first job will not carry over to the child job. Any changes you make in the environment inside a buil

Re: Parameterized build parameter help

2014-04-01 Thread Terry Lacy
If that's copy-pasted directly from your script, you've got a typo: "${TEST_GROUP_A,}" There's a comma in there that you probably don't want. Terry On Tuesday, April 1, 2014 3:09:37 PM UTC-6, harperville wrote: > > I hope I can explain this clearly enough the first time around. > > I have a pa

Re: "no route to host" using LDAP and Active Directory

2014-04-01 Thread Richard Bywater
Perhaps checkout the Override Domain Controllers section on this page https://wiki.jenkins-ci.org/display/JENKINS/Active+Directory+plugin Richard. On Wed, Apr 2, 2014 at 10:16 AM, Terry Lacy wrote: > > I'm having intermittent issues authenticating with Jenkins. I use LDAP > with Active Direct

Filter culprits on email-ext

2014-04-01 Thread Jon Schewe
I use the email-ext plugin to send out emails about build failures. I originally had it set to send email to all culprits when the build failed. However I import some code from other repositories and then Jenkins wanted to send emails to people that weren't on my development team because of these i

Re: Filter culprits on email-ext

2014-04-01 Thread Slide
No, culprits comes from Jenkins itself. The best you could do is have a presend script that modifies the MimeMessage's To list. On Tue, Apr 1, 2014 at 2:56 PM, Jon Schewe wrote: > I use the email-ext plugin to send out emails about build failures. I > originally had it set to send email to all

Re: Filter culprits on email-ext

2014-04-01 Thread Jon Schewe
Which would need some custom Java code, correct? Is there another plugin that might work? On Tue, Apr 1, 2014 at 4:58 PM, Slide wrote: > No, culprits comes from Jenkins itself. The best you could do is have a > presend script that modifies the MimeMessage's To list. > > > On Tue, Apr 1, 2014 a

Can the Mercurial Plugin ignore a certain file when determining if a build should be done?

2014-04-01 Thread John Lussmyer
We have a file in SCM that contains the current build number. We'd like to setup Jenkins to update that file each time it builds - BUT if we have it commit/push the change, that will trigger a new build at the next polling interval. So, we'd like to have mercurial ignore that file during the poll

Re: Filter culprits on email-ext

2014-04-01 Thread Slide
No, you use Groovy for the pre-send script. There is no other plugin that I know of. On Tue, Apr 1, 2014 at 3:14 PM, Jon Schewe wrote: > Which would need some custom Java code, correct? > > Is there another plugin that might work? > > > On Tue, Apr 1, 2014 at 4:58 PM, Slide wrote: > >> No, cul

Keeping build information (not artifacts)

2014-04-01 Thread CLOSE Dave
Something is deleting old build information from my Jenkins (version 1.556 running on Fedora) "jobs" directory. This doesn't seem to be based on any apparent criteria like the number of old builds, the age of the builds, or anything else. Some jobs show all their history; others have only a few

Re: Keeping build information (not artifacts)

2014-04-01 Thread Richard Bywater
Inside a job's configuration there is a Discard Old Builds option which would give you similar to what you are seeing. Perhaps check to see if that's set for any of the jobs you are referring to? Richard. On Wed, Apr 2, 2014 at 2:02 PM, CLOSE Dave wrote: > Something is deleting old build inform

dose jenkins make publish page?

2014-04-01 Thread 백인철
Hi guys I am looking for jenkins artifact publishing plugin or something what I want to do is making publish page when I build some jobs then I can get artifacts, but it is belongs to each build jobs so I can't see every results on one page so I want to gather does artifacts with release note

Re: Build marked as failure in build history after 0 ms, but console finished as success

2014-04-01 Thread Dilip M
On Wed, Dec 18, 2013 at 2:43 PM, Søren Mollerup wrote: > We've run into a weird problem lately. > > A couple of our jobs are sometimes marked as failures in the build > history, and the trend says it is finished after 0 ms. > If I examine the console output the build is executed as normal and > r

Jenkins scaling as a test-reporting framework?

2014-04-01 Thread Adam Seering
Hi all, I'm new to Jenkins; hoping someone has some thoughts or experience: I'm looking at re-working an existing system that runs a lot (order of, say, a million) of automated tests per day. (That's many fewer distinct tests but repeated many times daily as new versions are committed.)